[89] | 1 | #################################################
|
---|
| 2 | # ___________ ____ ______ __ __ _____ #
|
---|
| 3 | # \____ \__ \ _/ ___\\____ \| | \/ ___/ #
|
---|
| 4 | # | |_> > __ \\ \___| |_> > | /\___ \ #
|
---|
| 5 | # | __(____ /\___ > __/|____//____ > #
|
---|
| 6 | # |__| \/ \/|__| \/ #
|
---|
| 7 | # #
|
---|
| 8 | #################################################
|
---|
| 9 |
|
---|
| 10 | # ========================================
|
---|
[252] | 11 | # Build-specific configuration
|
---|
| 12 | # CACHE FILEPATH "Installation directory for the library"
|
---|
[89] | 13 | # ========================================
|
---|
| 14 | if(IS_BUILDING_PACPUS)
|
---|
[252] | 15 | if(PACPUS_INSTALL_WITH_VERSION_NUMBER)
|
---|
| 16 | pacpus_purge_backslash(PACPUS_INSTALL_DIR)
|
---|
| 17 | set(PACPUS_INSTALL_DIR ${PACPUS_INSTALL_DIR}/${PACPUS_VERSION} )
|
---|
| 18 | endif()
|
---|
| 19 | # set(PACPUS_INSTALL_DIR ${CMAKE_INSTALL_PREFIX} CACHE FILEPATH "Installation directory for the library")
|
---|
[89] | 20 | set(PACPUS_INSTALL_3RD FALSE CACHE BOOL "Installation of the 3rd party")
|
---|
| 21 | endif()
|
---|
| 22 |
|
---|
| 23 | # ========================================
|
---|
| 24 | # Global configuration
|
---|
| 25 | # ========================================
|
---|
| 26 | set(PACPUS_USE_LOG TRUE CACHE BOOL "Logging using log4cxx, the library is required")
|
---|
[252] | 27 | if(win32)
|
---|
| 28 | set(PACPUS_INSTALL_3RD TRUE CACHE BOOL "Installation of the 3rd party")
|
---|
| 29 | else()
|
---|
| 30 | set(PACPUS_INSTALL_3RD FALSE CACHE BOOL "Installation of the 3rd party")
|
---|
| 31 | endif()
|
---|
[89] | 32 | set(PACPUS_BUILD_DOC FALSE CACHE BOOL "Whether build the documentation - requires Doxygen")
|
---|
[163] | 33 | set(PACPUS_BUILD_EXAMPLES FALSE CACHE BOOL "Whether build the examples")
|
---|
[89] | 34 | set(PACPUS_USE_SOLUTION_FOLDERS FALSE CACHE BOOL "Use solution folders to classify projects, works in MS Visual Studio")
|
---|
| 35 |
|
---|
[119] | 36 | set(QT5 FALSE CACHE BOOL " Use Qt5 or Qt4")
|
---|
| 37 |
|
---|
[89] | 38 | if(PACPUS_USE_SOLUTION_FOLDERS)
|
---|
| 39 | if(CMAKE_VERSION VERSION_GREATER "2.8.0")
|
---|
| 40 | set_property(GLOBAL PROPERTY USE_FOLDERS ON)
|
---|
| 41 | else()
|
---|
| 42 | message(AUTHOR_WARNING "Folders are only supported with CMake 2.8.0 and newer, and MSVC 2005 and newer except for 2005/2008/2010 Express Edition")
|
---|
| 43 | endif()
|
---|
[119] | 44 | endif(PACPUS_USE_SOLUTION_FOLDERS)
|
---|