mirror of
https://github.com/Relintai/rcpp_framework.git
synced 2024-11-10 00:52:11 +01:00
13 lines
244 B
Plaintext
13 lines
244 B
Plaintext
|
#!/usr/bin/env python
|
||
|
|
||
|
Import("env_db")
|
||
|
Import("env")
|
||
|
|
||
|
env_db.core_sources = []
|
||
|
|
||
|
#env_db.add_source_files(env_db.core_sources, "*.cpp")
|
||
|
|
||
|
# Build it all as a library
|
||
|
lib = env_db.add_library("linux", env_db.core_sources)
|
||
|
env.Prepend(LIBS=[lib])
|