source: pacpusframework/trunk/cmake/PacpusConfiguration.cmake@ 91

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

Improvement of the build system to avoid some workarounds

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