TextureBinders: Correct usage for getNativeContent()
[profile/ivi/layer-management.git] / CMakeLists.txt
1 ############################################################################
2
3 # Copyright 2010, 2011 BMW Car IT GmbH  
4 # Copyright (C) 2011 DENSO CORPORATION and Robert Bosch Car Multimedia Gmbh
5
6
7 # Licensed under the Apache License, Version 2.0 (the "License"); 
8 # you may not use this file except in compliance with the License. 
9 # You may obtain a copy of the License at 
10 #
11 #       http://www.apache.org/licenses/LICENSE-2.0 
12 #
13 # Unless required by applicable law or agreed to in writing, software 
14 # distributed under the License is distributed on an "AS IS" BASIS, 
15 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 
16 # See the License for the specific language governing permissions and 
17 # limitations under the License.
18 #
19 ############################################################################
20
21 cmake_minimum_required (VERSION 2.6)
22 project (LayerManager)
23
24 set(CMAKE_MODULE_PATH ${CMAKE_MODULE_PATH} "${CMAKE_CURRENT_SOURCE_DIR}/cmake/modules/")
25
26 include(${CMAKE_MODULE_PATH}/CMakeVersions.txt)
27
28 # set default build type, if not defined by user
29 if (NOT CMAKE_BUILD_TYPE)
30     set(CMAKE_BUILD_TYPE Release CACHE STRING
31                          "Choose build type: Debug, Release, RelWithDebInfo, MinSizeRel."
32                          FORCE)
33     message(STATUS "Build type not defined. Using default build type 'Release'.")
34 endif (NOT CMAKE_BUILD_TYPE)
35
36 # Platforms / A set of indiviual options at once
37
38 option (WITH_X11_GLES       "Build for X11 with GLES 2.0"                         ON )
39 option (WITH_GLESv2_LIB     "Build development library for GLES2 Based Renderers" OFF)
40 option (WITH_EGL_EXAMPLE    "Build EGL_EXAMPLE / X11"                             ON )
41 option (WITH_WL_EXAMPLE     "Build EGL_EXAMPLE / Wayland"                         OFF)
42 option (WITH_DESKTOP        "Build for Desktop / GLX"                             OFF)
43 option (WITH_GLX_LIB        "Build development library for GLX Based Renderers"   OFF)
44 option (WITH_WAYLAND        "Build for Desktop / Wayland(GLX)"                    OFF)
45 option (WITH_GLX_EXAMPLE    "Build GLX_EXAMPLE "                                  OFF)
46 option (WITH_INPUT_EVENTS   "Activate input events handling"                      OFF)
47 option (WITH_FORCE_COPY     "Force Software Copy of Pixmaps"                      OFF)
48 option (WITH_XTHREADS       "Build with usage of X11 Threading"                   ON )
49 option (WITH_CLIENTEXAMPLES "Build client examples "                              ON )
50 option (WITH_TESTS          "Build Available Tests "                              OFF)
51 option (WITH_DLT            "Build with DLT support "                             OFF)
52
53 set (CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wall -Wextra")
54
55 # generate cmake configuration header file, includes information on the
56 # project configuration, compiler settings, ...
57 message(STATUS "Generating config.h header file with build system configuration.")
58 configure_file(
59     ${CMAKE_CURRENT_SOURCE_DIR}/config/config.h.cmake
60     ${CMAKE_CURRENT_SOURCE_DIR}/config/config.h
61 )
62
63 if (WITH_DESKTOP)
64     set (WITH_GLX_LIB ON CACHE STRING "" FORCE)
65 endif(WITH_DESKTOP)     
66
67 if (WITH_X11_GLES OR WITH_WAYLAND)
68     set (WITH_GLESv2_LIB ON CACHE STRING "" FORCE)
69 endif(WITH_X11_GLES OR WITH_WAYLAND)
70
71 include_directories ("${PROJECT_SOURCE_DIR}/3rdParty/")
72
73 add_subdirectory (3rdParty)
74 add_subdirectory (LayerManagerPlugins/Communicators/DBUSCommunicator)
75 add_subdirectory (LayerManagerClient/ilmClient)
76 add_subdirectory (LayerManagerCommands)
77 add_subdirectory (LayerManagerService)
78 add_subdirectory (LayerManagerUtils)
79
80 if (WITH_GLESv2_LIB OR WITH_GLX_LIB)
81     add_subdirectory (LayerManagerPlugins/Renderers/Graphic)
82 endif(WITH_GLESv2_LIB OR WITH_GLX_LIB)
83
84 if (WITH_DESKTOP)
85     add_subdirectory (LayerManagerPlugins/Renderers/Platform/GLXRenderer)
86 endif(WITH_DESKTOP)     
87
88 if (WITH_WAYLAND)
89     add_subdirectory (LayerManagerPlugins/Renderers/Platform/WaylandGLESRenderer)
90 endif(WITH_WAYLAND)     
91
92 if (WITH_X11_GLES)
93     add_subdirectory (LayerManagerPlugins/Renderers/Platform/X11GLESRenderer)
94 endif(WITH_X11_GLES)   
95
96 if (WITH_EGL_EXAMPLE)
97     add_subdirectory (LayerManagerExamples/EGLX11ApplicationExample)
98     add_subdirectory (LayerManagerExamples/EGLX11MockNavigation)
99 endif(WITH_EGL_EXAMPLE)
100
101 if (WITH_GLX_EXAMPLE)
102     add_subdirectory (LayerManagerExamples/GLXApplicationExample)
103 endif(WITH_GLX_EXAMPLE)
104
105 if (WITH_CLIENTEXAMPLES)
106     add_subdirectory (LayerManagerExamples/LayerManagerClientExample)
107     add_subdirectory (LayerManagerExamples/LayerManagerToolBox)
108     add_subdirectory (LayerManagerExamples/LayerSceneDescriptionExample)
109 endif(WITH_CLIENTEXAMPLES)
110
111 if (WITH_WL_EXAMPLE)
112     add_subdirectory (LayerManagerExamples/EGLWLApplicationExample)
113     add_subdirectory (LayerManagerExamples/EGLWLMockNavigation)
114 endif(WITH_WL_EXAMPLE)
115
116 # enable ctest if building with tests
117 # run 'make test' after build to run all tests
118 # be aware that some tests require a running layermanager
119 if (WITH_TESTS)
120     enable_testing()
121 endif(WITH_TESTS)
122
123