2020-11-25 21:48:47 +01:00
|
|
|
#!/usr/bin/env python
|
|
|
|
|
|
|
|
Import("env")
|
|
|
|
|
|
|
|
env.core_sources = []
|
|
|
|
|
|
|
|
env.add_source_files(env.core_sources, "*.cpp")
|
2021-11-13 11:51:43 +01:00
|
|
|
env.add_source_files(env.core_sources, "./math/*.cpp")
|
2021-11-01 00:43:22 +01:00
|
|
|
env.add_source_files(env.core_sources, "./containers/*.cpp")
|
|
|
|
env.add_source_files(env.core_sources, "./log/*.cpp")
|
2021-11-03 15:42:16 +01:00
|
|
|
env.add_source_files(env.core_sources, "./os/*.cpp")
|
2022-02-04 13:37:52 +01:00
|
|
|
env.add_source_files(env.core_sources, "./image/*.cpp")
|
2021-11-09 19:38:07 +01:00
|
|
|
env.add_source_files(env.core_sources, "./threading/*.cpp")
|
2022-01-06 11:59:42 +01:00
|
|
|
env.add_source_files(env.core_sources, "./settings/*.cpp")
|
2022-01-07 16:56:26 +01:00
|
|
|
env.add_source_files(env.core_sources, "./nodes/*.cpp")
|
2020-11-25 21:48:47 +01:00
|
|
|
|
|
|
|
# Build it all as a library
|
|
|
|
lib = env.add_library("core", env.core_sources)
|
|
|
|
env.Prepend(LIBS=[lib])
|