The JUCE cross-platform C++ framework, with DISTRHO/KXStudio specific changes
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.

50 lines
1.2KB

  1. project.name = "JuceDemo"
  2. project.bindir = "build"
  3. project.libdir = "build"
  4. project.configs = { "Debug", "Release" }
  5. package = newpackage()
  6. package.name = "JuceDemo"
  7. package.kind = "winexe"
  8. package.language = "c++"
  9. package.objdir = "build/intermediate"
  10. package.config["Debug"].objdir = "build/intermediate/Debug"
  11. package.config["Release"].objdir = "build/intermediate/Release"
  12. package.config["Debug"].defines = { "LINUX=1", "DEBUG=1", "_DEBUG=1" };
  13. package.config["Debug"].buildoptions = { "-D_DEBUG -ggdb" }
  14. package.config["Release"].defines = { "LINUX=1", "NDEBUG=1" };
  15. package.target = "jucedemo"
  16. package.includepaths = {
  17. "/usr/include"
  18. }
  19. package.libpaths = {
  20. "/usr/X11R6/lib/",
  21. "../../../../bin"
  22. }
  23. package.config["Debug"].links = {
  24. "freetype", "pthread", "rt", "X11", "GL", "GLU", "Xinerama", "asound", "juce_debug"
  25. }
  26. package.config["Release"].links = {
  27. "freetype", "pthread", "rt", "X11", "GL", "GLU", "Xinerama", "asound", "juce"
  28. }
  29. package.linkflags = { "static-runtime" }
  30. package.files = { matchfiles (
  31. "../../src/*.h",
  32. "../../src/*.cpp",
  33. "../../src/demos/*.h",
  34. "../../src/demos/*.cpp"
  35. )
  36. }