mirror of
https://github.com/Relintai/pandemonium_engine.git
synced 2024-12-18 18:06:56 +01:00
13 lines
254 B
Python
13 lines
254 B
Python
#!/usr/bin/env python
|
|
|
|
Import("env_mod")
|
|
Import("env")
|
|
|
|
env_mod.core_sources = []
|
|
|
|
env_mod.add_source_files(env_mod.core_sources, "*.cpp")
|
|
|
|
# Build it all as a library
|
|
lib = env_mod.add_library("paged_list", env_mod.core_sources)
|
|
env.Prepend(LIBS=[lib])
|