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