Changeset 50 in pacpusframework for trunk/cmake/PacpusDependencies.cmake
- Timestamp:
- Jan 9, 2013, 9:06:15 AM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/cmake/PacpusDependencies.cmake
r38 r50 31 31 # log4cxx 32 32 # ======================================== 33 if 34 find_package(log4cxx REQUIRED)33 if(PACPUS_USE_LOG) 34 find_package(log4cxx REQUIRED) 35 35 36 list(APPEND PACPUS_DEFINITIONS " -DPACPUS_USE_LOG ")37 list(APPEND PACPUS_DEPENDENCIES_INC ${LOG4CXX_INCLUDE_DIRS})38 list(APPEND PACPUS_DEPENDENCIES_LIB ${LOG4CXX_LIBRARIES})36 list(APPEND PACPUS_DEFINITIONS " -DPACPUS_USE_LOG ") 37 list(APPEND PACPUS_DEPENDENCIES_INC ${LOG4CXX_INCLUDE_DIRS}) 38 list(APPEND PACPUS_DEPENDENCIES_LIB ${LOG4CXX_LIBRARIES}) 39 39 40 # If needed, install the dll of log4cxx41 if(WIN32 AND MSVC AND IS_BUILDING_PACPUS)42 pacpus_get_msvc(MSVC_VERSION)43 pacpus_purge_backslash(LOG4CXX_ROOT)40 # If needed, install the dll of log4cxx 41 if(WIN32 AND MSVC AND IS_BUILDING_PACPUS) 42 pacpus_get_msvc(MSVC_VERSION) 43 pacpus_purge_backslash(LOG4CXX_ROOT) 44 44 45 install(46 FILES47 ${LOG4CXX_ROOT}/bin/${MSVC_VERSION}/log4cxx.dll48 ${LOG4CXX_ROOT}/bin/${MSVC_VERSION}/log4cxx_d.dll49 DESTINATION50 ${PACPUS_INSTALL_DIR}/bin51 )52 endif()45 install( 46 FILES 47 ${LOG4CXX_ROOT}/bin/${MSVC_VERSION}/log4cxx.dll 48 ${LOG4CXX_ROOT}/bin/${MSVC_VERSION}/log4cxx_d.dll 49 DESTINATION 50 ${PACPUS_INSTALL_DIR}/bin 51 ) 52 endif() 53 53 endif() 54 54 … … 56 56 # Doxygen 57 57 # ======================================== 58 if 59 find_package(Doxygen)60 if(NOT DOXYGEN_FOUND)61 message(FATAL_ERROR "Doxygen is needed to build the documentation. Please install it correctly")62 endif()58 if(PACPUS_BUILD_DOC) 59 find_package(Doxygen) 60 if(NOT DOXYGEN_FOUND) 61 message(FATAL_ERROR "Doxygen is needed to build the documentation. Please install it correctly") 62 endif() 63 63 endif()
Note:
See TracChangeset
for help on using the changeset viewer.