Sandbox.DsrProj 1.2 KB

12345678910111213141516171819202122232425
  1. CompilerFlag "-std=c++14"
  2. Graphics
  3. #Sound
  4. # If compiling using CLANG instead of GCC in tools/builder/buildProject.sh, you need to include the C++ standard library explicitly.
  5. #Link "stdc++"
  6. # An include using quotation marks will detect the header and its headers recursively.
  7. # For each detected header, the build system looks for an implementation file of the same name in the same folder.
  8. # Because sandbox.cpp and tool.cpp don't have sandbox.h/hpp or tool.h/hpp, the build system can't know that main depends on them.
  9. Crawl "main.cpp"
  10. # Then we just start a new crawl search from each of those disconnected include branches.
  11. Crawl "sandbox.cpp"
  12. Crawl "tool.cpp"
  13. Import "../../DFPSR/DFPSR.DsrHead"
  14. # Linking statically to standard C/C++ libraries allow running the program without installing them.
  15. # Recommended for making an installer for another application or programs that should not need an installer.
  16. # If you don't want static linking of standard C/C++ libraries, you have to comment out StaticRuntime
  17. # and bundle the C/C++ runtime of the compiler with your program's installer.
  18. StaticRuntime
  19. # Uncomment to enable debug mode, which is slower
  20. #Debug