mirror of
https://github.com/Relintai/codot.git
synced 2024-11-13 08:27:18 +01:00
21 lines
359 B
Python
21 lines
359 B
Python
#!/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])
|
|
|