Sandbox.DsrProj 1.2 KB

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