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

  1. import os
  2. Import("globalEnv")
  3. env = globalEnv.Clone()
  4. env.Append(CPPPATH=[env["INIHCPPSRC"], env["INIHSRC"]])
  5. files = Glob(os.path.join(env["INIHCPPSRC"], "*.cpp"))
  6. files.append(Glob(os.path.join(env["INIHSRC"], "*.c")))
  7. env.Library(target="inihcpp", source=files)