Sandbox.DsrProj 1.0 KB

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