mirror of
https://github.com/Relintai/rcpp_framework.git
synced 2024-11-14 04:57:21 +01:00
14 lines
302 B
Python
14 lines
302 B
Python
#!/usr/bin/env python
|
|
|
|
Import("env_db")
|
|
Import("env")
|
|
|
|
env_db.core_sources = []
|
|
|
|
env_db.add_source_files(env_db.core_sources, "*.cpp")
|
|
env_db.core_sources.append("./sqlite/sqlite3.c")
|
|
|
|
# Build it all as a library
|
|
lib = env_db.add_library("database_sqlite", env_db.core_sources)
|
|
env.Prepend(LIBS=[lib])
|