Ви не можете вибрати більше 25 тем Теми мають розпочинатися з літери або цифри, можуть містити дефіси (-) і не повинні перевищувати 35 символів.

18 рядки
932 B

  1. # This file contains options that can be passed to the cmake command
  2. Option ( CPPCORE_INSTALL_HEADER
  3. "Install headers of cppcore."
  4. ON )
  5. Option ( CPPCORE_INSTALL_PACKAGE
  6. "Install the cmake package of cppcore."
  7. ON )
  8. Option ( CPPCORE_USE_GIT_VERSION
  9. "Read the git tags to get the version of cppcore"
  10. ON )
  11. If ( NOT CPPCORE_CONVERT_CAST )
  12. Set ( CPPCORE_CONVERT_CAST throw
  13. CACHE STRING "Specify how the convert_cast should handle invalid values." )
  14. Set_Property ( CACHE CPPCORE_CONVERT_CAST
  15. PROPERTY STRINGS throw abort )
  16. EndIf ( )