Clone.DsrProj 864 B

12345678910111213141516171819
  1. # No need to import DFPSR.DsrHead with stub backends when only including essential headers.
  2. CompilerFlag "-std=c++14"
  3. # If compiling using CLANG instead of GCC in tools/builder/buildProject.sh, you need to include the C++ standard library explicitly.
  4. #Link "stdc++"
  5. Crawl "main.cpp"
  6. # Linking statically to standard C/C++ libraries allow running the program without installing them.
  7. # Recommended for making an installer for another application or programs that should not need an installer.
  8. # If you don't want static linking of standard C/C++ libraries, you have to comment out StaticRuntime
  9. # and bundle the C/C++ runtime of the compiler with your program's installer.
  10. StaticRuntime
  11. # Uncomment to enable debug mode, which is slower
  12. #Debug
  13. # Show how the build system works when finding the library's used subset
  14. ListDependencies