LayerManagerCommands: fixed array handling
[profile/ivi/layer-management.git] / config / CMakeLists.txt
1 ############################################################################
2
3 # Copyright 2010, 2011 BMW Car IT GmbH
4
5
6 # Licensed under the Apache License, Version 2.0 (the "License"); 
7 # you may not use this file except in compliance with the License. 
8 # You may obtain a copy of the License at 
9 #
10 #               http://www.apache.org/licenses/LICENSE-2.0 
11 #
12 # Unless required by applicable law or agreed to in writing, software 
13 # distributed under the License is distributed on an "AS IS" BASIS, 
14 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 
15 # See the License for the specific language governing permissions and 
16 # limitations under the License.
17 #
18 ############################################################################
19
20 cmake_minimum_required (VERSION 2.6)
21
22 # check configuration
23
24 message(STATUS "Checking configuration, if valid.")
25 if (WITH_TESTS AND WITH_STATIC_LIBRARIES)
26     message(FATAL_ERROR "unit tests (WITH_TESTS=ON) are not supported with static linking (WITH_STATIC_LIBRARIES=ON)")
27 endif (WITH_TESTS AND WITH_STATIC_LIBRARIES)
28
29
30 # generate cmake configuration header file, includes information on the
31 # project configuration, compiler settings, ...
32
33 message(STATUS "Generating config.h header file with build system configuration.")
34
35 foreach(FLAG ${BUILD_FLAG_LIST})
36     SET(EXPORTED_BUILD_FLAGS "${EXPORTED_BUILD_FLAGS}${FLAG}\n")
37 endforeach(FLAG ${BUILD_FLAG_LIST})
38
39 LIST(SORT BUILD_FLAG_ARRAY BUILD_FLAG_ARRAY)
40 foreach(FLAG ${BUILD_FLAG_ARRAY})
41     SET(EXPORTED_BUILD_FLAG_ARRAY "${EXPORTED_BUILD_FLAG_ARRAY}    { DEBUG_FLAG, \"${FLAG} = ${${FLAG}}\" },\n")
42 endforeach(FLAG ${BUILD_FLAG_ARRAY})
43
44 foreach(PLUGIN ${STATICALLY_LINKED_PLUGINS})
45     SET(STATIC_PLUGIN_REGISTRATION "${STATIC_PLUGIN_REGISTRATION} \\\n        REGISTER_PLUGIN(${PLUGIN})")
46 endforeach(PLUGIN ${STATICALLY_LINKED_PLUGINS})
47
48 configure_file(
49     ${CMAKE_SOURCE_DIR}/config/res/config.h.cmake
50     ${CMAKE_SOURCE_DIR}/config/config.h.1stpass
51 )
52
53 configure_file(
54     ${CMAKE_SOURCE_DIR}/config/config.h.1stpass
55     ${CMAKE_SOURCE_DIR}/config/config.h
56 )
57