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.

47 lines
1.0KB

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