mirror of
https://github.com/Relintai/rcpp_framework.git
synced 2024-11-14 04:57:21 +01:00
17 lines
493 B
Python
17 lines
493 B
Python
#!/usr/bin/env python
|
|
|
|
Import("env")
|
|
|
|
env.core_sources = []
|
|
|
|
env.add_source_files(env.core_sources, "*.cpp")
|
|
env.add_source_files(env.core_sources, "./html/*.cpp")
|
|
env.add_source_files(env.core_sources, "./http/*.cpp")
|
|
env.add_source_files(env.core_sources, "./hash/*.cpp")
|
|
env.add_source_files(env.core_sources, "./bry_http/*.cpp")
|
|
env.add_source_files(env.core_sources, "./database/*.cpp")
|
|
|
|
# Build it all as a library
|
|
lib = env.add_library("core", env.core_sources)
|
|
env.Prepend(LIBS=[lib])
|