Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.
 
 
 
 

21 wiersze
1.1 KiB

  1. # This file contains options that can be passed to the cmake command
  2. Option ( LIBHELLOWORLD_INSTALL_HEADER
  3. "Install headers of libhelloworld."
  4. ON )
  5. Option ( LIBHELLOWORLD_INSTALL_STATIC
  6. "Install static library of libhelloworld."
  7. ON )
  8. Option ( LIBHELLOWORLD_INSTALL_SHARED
  9. "Install shared library of libhelloworld."
  10. ON )
  11. Option ( LIBHELLOWORLD_INSTALL_DEBUG
  12. "Install the stripped debug informations of libhelloworld."
  13. OFF )
  14. Option ( LIBHELLOWORLD_NO_STRIP
  15. "Do not strip debug symbols from binary."
  16. OFF )
  17. Option ( LIBHELLOWORLD_USE_GIT_VERSION
  18. "Read the git tags to get the version of libhelloworld"
  19. ON )