2
0

Sandbox.DsrProj 1.0 KB

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