Remove the AFB definition
[staging/windowmanager.git] / CMakeLists.txt
1 #
2 # Copyright (C) 2017 Mentor Graphics Development (Deutschland) GmbH
3 #
4 # Licensed under the Apache License, Version 2.0 (the "License");
5 # you may not use this file except in compliance with the License.
6 # You may obtain a copy of the License at
7 #
8 #      http://www.apache.org/licenses/LICENSE-2.0
9 #
10 # Unless required by applicable law or agreed to in writing, software
11 # distributed under the License is distributed on an "AS IS" BASIS,
12 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 # See the License for the specific language governing permissions and
14 # limitations under the License.
15 #
16
17 cmake_minimum_required(VERSION 2.8)
18
19 project(TMCAGLWM)
20
21 set(PACKAGE_VERSION_MAJOR 0)
22 set(PACKAGE_VERSION_MINOR 0)
23 set(PACKAGE_VERSION_REVISION 1)
24 set(PACKAGE_VERSION "${PACKAGE_VERSION_MAJOR}.${PACKAGE_VERSION_MINOR}.${PACKAGE_VERSION_REVISION}")
25
26 find_package(PkgConfig REQUIRED)
27
28 pkg_check_modules(WLC wayland-client>=1.11.0 REQUIRED)
29
30 macro(wlproto var_basename proto_xml_basename)
31    if("${WLSCAN}" STREQUAL "")
32       find_program(WLSCAN NAMES wayland-scanner)
33    endif()
34
35    if(EXISTS ${CMAKE_CURRENT_SOURCE_DIR}/protocol)
36       set(proto_dir "${CMAKE_CURRENT_SOURCE_DIR}/protocol")
37    elseif(EXISTS ${CMAKE_CURRENT_SOURCE_DIR}/../protocol)
38       set(proto_dir "${CMAKE_CURRENT_SOURCE_DIR}/../protocol")
39    else()
40       message(FATAL_ERROR "Could not find ${CMAKE_CURRENT_SOURCE_DIR}/protocol or ${CMAKE_CURRENT_SOURCE_DIR}/../protocol")
41    endif()
42
43    add_custom_command(
44       OUTPUT
45          ${proto_xml_basename}-protocol.c
46          #${proto_xml_basename}-server-protocol.h
47          ${proto_xml_basename}-client-protocol.h
48       MAIN_DEPENDENCY ${proto_dir}/${proto_xml_basename}.xml
49       COMMAND ${WLSCAN} code <          ${proto_dir}/${proto_xml_basename}.xml > ${proto_xml_basename}-protocol.c
50       #COMMAND ${WLSCAN} server-header < ${proto_dir}/${proto_xml_basename}.xml > ${proto_xml_basename}-server-protocol.h
51       COMMAND ${WLSCAN} client-header < ${proto_dir}/${proto_xml_basename}.xml > ${proto_xml_basename}-client-protocol.h
52    )
53
54    set(${var_basename}_PROTO ${CMAKE_CURRENT_BINARY_DIR}/${proto_xml_basename}-protocol.c)
55    set(${var_basename}_CLIENT ${CMAKE_CURRENT_BINARY_DIR}/${proto_xml_basename}-client-protocol.h)
56    #set(${var_basename}_SERVER ${CMAKE_CURRENT_BINARY_DIR}/${proto_xml_basename}-server-protocol.h)
57
58    include_directories(${CMAKE_CURRENT_BINARY_DIR})
59 endmacro()
60
61 # Should modernize the following somehow...
62 set(ENABLE_DEBUG_OUTPUT OFF CACHE BOOL "Enable debug logging")
63 if(ENABLE_DEBUG_OUTPUT)
64    add_definitions(-DDEBUG_OUTPUT)
65 else()
66    remove_definitions(-DDEBUG_OUTPUT)
67 endif()
68
69 # Should modernize the following somehow...
70 set(ENABLE_SCOPE_TRACING OFF CACHE BOOL "Enable scope enter/leave messages for certain parts of the code.")
71 if(ENABLE_SCOPE_TRACING)
72    add_definitions(-DSCOPE_TRACING)
73 else()
74    remove_definitions(-DSCOPE_TRACING)
75 endif()
76
77 set(SANITIZER_MODE "none" CACHE STRING "Build using a specific sanitizer (e.g. 'address', 'thread', 'leak', 'undefined'), depends on compiler; default none")
78
79 set(LINK_LIBCXX OFF CACHE BOOL "Link against LLVMs libc++")
80
81 add_subdirectory(src)