You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

12 lines
270 B

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)