mirror of
https://github.com/Relintai/codot.git
synced 2025-02-22 15:27:57 +01:00
21 lines
359 B
Plaintext
21 lines
359 B
Plaintext
|
#!/usr/bin/env python
|
||
|
|
||
|
Import("env")
|
||
|
|
||
|
from platform_methods import run_in_subprocess
|
||
|
|
||
|
env.core_sources = []
|
||
|
|
||
|
# Chain load SCsubs
|
||
|
#SConscript("os/SCsub")
|
||
|
SConscript("math/SCsub")
|
||
|
#SConscript("crypto/SCsub")
|
||
|
#SConscript("io/SCsub")
|
||
|
#SConscript("bind/SCsub")
|
||
|
|
||
|
|
||
|
# Build it all as a library
|
||
|
lib = env.add_library("core", env.core_sources)
|
||
|
env.Prepend(LIBS=[lib])
|
||
|
|