You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

27 lines
928 B

  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_INSTALL_PACKAGE
  15. "Install the cmake package of libhelloworld."
  16. ON )
  17. Option ( LIBHELLOWORLD_NO_STRIP
  18. "Do not strip debug symbols from binary."
  19. OFF )
  20. Option ( LIBHELLOWORLD_USE_GIT_VERSION
  21. "Read the git tags to get the version of libhelloworld"
  22. ON )
  23. Option ( LIBHELLOWORLD_IGNORE_MODULES
  24. "Use only config mode to find other packages"
  25. OFF )