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.

23 lines
337B

  1. dofile("../../../scripts/make-project.lua")
  2. package = make_library_project("dgl")
  3. package.includepaths = {
  4. ".."
  5. }
  6. package.files = {
  7. matchfiles (
  8. "../src/*.cpp"
  9. )
  10. }
  11. if (macosx) then
  12. package.files = {
  13. package.files,
  14. "../src/pugl/pugl_osx.m.c",
  15. "../src/pugl/pugl_osx_extended.m.c"
  16. }
  17. end