Changeset 321 in pacpusframework for trunk


Ignore:
Timestamp:
10/28/14 11:26:18 (10 years ago)
Author:
Marek Kurdej
Message:

[cmake] Fix small CMake problem. Change defaults CMake parameters.

Location:
trunk/cmake
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/cmake/PacpusConfiguration.cmake

    r239 r321  
    1919# Global configuration
    2020# ========================================
    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")
     21set(PACPUS_USE_LOG              TRUE  CACHE BOOL "Logging using Boost.Log, the library is required")
     22set(PACPUS_LOG_COLORED_OUTPUT   TRUE CACHE BOOL "Logging in color.")
     23set(PACPUS_INSTALL_3RD          FALSE CACHE BOOL "Installation of the 3rd party")
     24set(PACPUS_BUILD_DOC            FALSE CACHE BOOL "Whether build the documentation - requires Doxygen")
     25set(PACPUS_BUILD_EXAMPLES       TRUE CACHE BOOL "Whether build the examples")
     26set(PACPUS_USE_SOLUTION_FOLDERS TRUE CACHE BOOL "Use solution folders to classify projects, works in MS Visual Studio")
    2727
    2828if(PACPUS_USE_SOLUTION_FOLDERS)
  • trunk/cmake/PacpusUtilities.cmake

    r313 r321  
    463463        "#endif // __${PLUGIN_NAME_UPPER}_CONFIG_H__\n"
    464464        )
    465 endfunction(CREATE_EXPORT)
     465endfunction()
    466466
    467467function(UNDEF_EXPORT PLUGIN_NAME)
    468468    string(TOUPPER ${PLUGIN_NAME} PLUGIN_NAME_UPPER)
    469469    add_definitions( -U${PLUGIN_NAME_UPPER}_EXPORTS )
    470 endfunction(IMPORT)
     470endfunction()
Note: See TracChangeset for help on using the changeset viewer.