implemented basics

This commit is contained in:
Tom
2019-02-15 21:28:37 +01:00
parent 4f9ae6c67d
commit 9346bcdf63
3473 changed files with 504669 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
import os
Import("globalEnv")
env = globalEnv.Clone()
env.Append(CPPPATH=[env["INIHCPPSRC"], env["INIHSRC"]])
files = Glob(os.path.join(env["INIHCPPSRC"], "*.cpp"))
files.append(Glob(os.path.join(env["INIHSRC"], "*.c")))
env.Library(target="inihcpp", source=files)