source: pacpusframework/branches/0.0.x/cmake/PacpusConfiguration.cmake@ 366

Last change on this file since 366 was 252, checked in by DHERBOMEZ Gérald, 11 years ago

branche 0.1:

  • add installation option with version number of PACPUS
  • compilation on Win32 with Qt4.8.1, boost 1.54 and msvc10 : OK

branche 0.0:

  • minor changes
  • Property svn:keywords set to Id
File size: 1.7 KB
Line 
1#################################################
2# ___________ ____ ______ __ __ _____ #
3# \____ \__ \ _/ ___\\____ \| | \/ ___/ #
4# | |_> > __ \\ \___| |_> > | /\___ \ #
5# | __(____ /\___ > __/|____//____ > #
6# |__| \/ \/|__| \/ #
7# #
8#################################################
9
10# ========================================
11# Build-specific configuration
12# ========================================
13if(IS_BUILDING_PACPUS)
14 if(PACPUS_INSTALL_WITH_VERSION_NUMBER)
15 pacpus_purge_backslash(PACPUS_INSTALL_DIR)
16 set(PACPUS_INSTALL_DIR ${PACPUS_INSTALL_DIR}/${PACPUS_VERSION})
17 endif()
18 set(PACPUS_INSTALL_3RD FALSE CACHE BOOL "Installation of the 3rd party")
19endif()
20
21
22# ========================================
23# Global configuration
24# ========================================
25set(PACPUS_USE_LOG TRUE CACHE BOOL "Logging using log4cxx, the library is required")
26if(win32)
27 set(PACPUS_INSTALL_3RD TRUE CACHE BOOL "Installation of the 3rd party")
28else()
29 set(PACPUS_INSTALL_3RD FALSE CACHE BOOL "Installation of the 3rd party")
30endif()
31set(PACPUS_BUILD_DOC FALSE CACHE BOOL "Whether build the documentation - requires Doxygen")
32set(PACPUS_USE_SOLUTION_FOLDERS FALSE CACHE BOOL "Use solution folders to classify projects, works in MS Visual Studio")
33
34if(PACPUS_USE_SOLUTION_FOLDERS)
35 if(CMAKE_VERSION VERSION_GREATER "2.8.0")
36 set_property(GLOBAL PROPERTY USE_FOLDERS ON)
37 else()
38 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")
39 endif()
40endif(PACPUS_USE_SOLUTION_FOLDERS)
Note: See TracBrowser for help on using the repository browser.