show_help.cmd 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. echo.
  2. echo Convenience targets
  3. echo - release ^(identical to the official blender.org builds^)
  4. echo - full ^(same as release minus the cuda kernels^)
  5. echo - lite
  6. echo - headless
  7. echo - cycles
  8. echo - bpy
  9. echo.
  10. echo Utilities ^(not associated with building^)
  11. echo - clean ^(Target must be set^)
  12. echo - update ^(Update both SVN and GIT^)
  13. echo - code_update ^(Update only GIT^)
  14. echo - nobuild ^(only generate project files^)
  15. echo - showhash ^(Show git hashes of source tree^)
  16. echo - format [path] ^(Format the source using clang-format, path is optional, requires python 3.x to be available^)
  17. echo.
  18. echo Configuration options
  19. echo - verbose ^(enable diagnostic output during configuration^)
  20. echo - with_tests ^(enable building unit tests^)
  21. echo - nobuildinfo ^(disable buildinfo^)
  22. echo - debug ^(Build an unoptimized debuggable build^)
  23. echo - packagename [newname] ^(override default cpack package name^)
  24. echo - buildir [newdir] ^(override default build folder^)
  25. echo - x86 ^(override host auto-detect and build 32 bit code^)
  26. echo - x64 ^(override host auto-detect and build 64 bit code^)
  27. echo - 2017 ^(build with visual studio 2017^)
  28. echo - 2017pre ^(build with visual studio 2017 pre-release^)
  29. echo - 2017b ^(build with visual studio 2017 Build Tools^)
  30. echo.
  31. echo Experimental options
  32. echo - with_opengl_tests ^(enable both the render and draw opengl test suites^)
  33. echo - 2015 ^(build with visual studio 2015^)
  34. echo - clang ^(enable building with clang^)
  35. echo - asan ^(enable asan when building with clang^)
  36. echo - ninja ^(enable building with ninja instead of msbuild^)
  37. echo.