Changeset 321 in pacpusframework for trunk/cmake
- Timestamp:
- Oct 28, 2014, 11:26:18 AM (10 years ago)
- Location:
- trunk/cmake
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/cmake/PacpusConfiguration.cmake
r239 r321 19 19 # Global configuration 20 20 # ======================================== 21 set(PACPUS_USE_LOG TRUE CACHE BOOL "Logging using Boost.Log, the library is required")22 set(PACPUS_LOG_COLORED_OUTPUT FALSE CACHE BOOL "Logging in color.")23 set(PACPUS_INSTALL_3RD FALSE CACHE BOOL "Installation of the 3rd party")24 set(PACPUS_BUILD_DOC FALSE CACHE BOOL "Whether build the documentation - requires Doxygen")25 set(PACPUS_BUILD_EXAMPLES FALSE CACHE BOOL "Whether build the examples")26 set(PACPUS_USE_SOLUTION_FOLDERS FALSE CACHE BOOL "Use solution folders to classify projects, works in MS Visual Studio")21 set(PACPUS_USE_LOG TRUE CACHE BOOL "Logging using Boost.Log, the library is required") 22 set(PACPUS_LOG_COLORED_OUTPUT TRUE CACHE BOOL "Logging in color.") 23 set(PACPUS_INSTALL_3RD FALSE CACHE BOOL "Installation of the 3rd party") 24 set(PACPUS_BUILD_DOC FALSE CACHE BOOL "Whether build the documentation - requires Doxygen") 25 set(PACPUS_BUILD_EXAMPLES TRUE CACHE BOOL "Whether build the examples") 26 set(PACPUS_USE_SOLUTION_FOLDERS TRUE CACHE BOOL "Use solution folders to classify projects, works in MS Visual Studio") 27 27 28 28 if(PACPUS_USE_SOLUTION_FOLDERS) -
trunk/cmake/PacpusUtilities.cmake
r313 r321 463 463 "#endif // __${PLUGIN_NAME_UPPER}_CONFIG_H__\n" 464 464 ) 465 endfunction( CREATE_EXPORT)465 endfunction() 466 466 467 467 function(UNDEF_EXPORT PLUGIN_NAME) 468 468 string(TOUPPER ${PLUGIN_NAME} PLUGIN_NAME_UPPER) 469 469 add_definitions( -U${PLUGIN_NAME_UPPER}_EXPORTS ) 470 endfunction( IMPORT)470 endfunction()
Note:
See TracChangeset
for help on using the changeset viewer.