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.
 
 
 

30 lines
1.8 KiB

  1. # This file contains options that can be passed to the cmake command
  2. Option ( CPPMICROHTTPD_INSTALL_HEADER
  3. "Install headers of cppmicrohttpd."
  4. ON )
  5. Option ( CPPMICROHTTPD_INSTALL_STATIC
  6. "Install static library of cppmicrohttpd."
  7. ON )
  8. Option ( CPPMICROHTTPD_INSTALL_SHARED
  9. "Install shared library of cppmicrohttpd."
  10. ON )
  11. Option ( CPPMICROHTTPD_INSTALL_DEBUG
  12. "Install the stripped debug informations of cppmicrohttpd."
  13. OFF )
  14. Option ( CPPMICROHTTPD_INSTALL_PACKAGE
  15. "Install the cmake package of cppmicrohttpd."
  16. ON )
  17. Option ( CPPMICROHTTPD_NO_STRIP
  18. "Do not strip debug symbols from binary."
  19. OFF )
  20. Option ( CPPMICROHTTPD_USE_GIT_VERSION
  21. "Read the git tags to get the version of cppmicrohttpd"
  22. ON )
  23. If ( NOT CPPMICROHTTPD_LOGGING )
  24. Set ( CPPMICROHTTPD_LOGGING none
  25. CACHE STRING "Specify how cppmicrohttpd should write log entries." )
  26. Set_Property ( CACHE CPPMICROHTTPD_LOGGING
  27. PROPERTY STRINGS none stdout cpplogging )
  28. EndIf ( )