mirror of
https://github.com/Relintai/pandemonium_engine.git
synced 2024-12-22 11:56:49 +01:00
13 lines
256 B
Plaintext
13 lines
256 B
Plaintext
|
#!/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("message_page", env_mod.core_sources)
|
||
|
env.Prepend(LIBS=[lib])
|