mirror of https://github.com/cutefishos/appmotor
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
60 lines
2.1 KiB
CMake
60 lines
2.1 KiB
CMake
cmake_minimum_required(VERSION 3.0)
|
|
cmake_policy(VERSION 3.0)
|
|
|
|
project(cutefish-appmotor)
|
|
|
|
find_package(ECM REQUIRED NO_MODULE)
|
|
set(CMAKE_MODULE_PATH ${ECM_MODULE_PATH})
|
|
|
|
include(FeatureSummary)
|
|
include(GNUInstallDirs)
|
|
include(ECMGeneratePkgConfigFile)
|
|
|
|
option(INSTALL_SYSTEMD_UNITS "Install systemd unit files" ON)
|
|
|
|
#
|
|
# NOTE: For verbose build use VERBOSE=1
|
|
#
|
|
|
|
# Default C++-flags. Sub-builds might alter these.
|
|
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -W -Wall -Wextra -g -O3 -Wl,--as-needed")
|
|
# Default C-flags. Sub-builds might alter these.
|
|
set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -W -Wall -Wextra -g -O3")
|
|
|
|
set(CMAKE_SHARED_LIBRARY_LINK_C_FLAGS "")
|
|
set(CMAKE_SHARED_LIBRARY_LINK_CXX_FLAGS "")
|
|
|
|
# Find libdl
|
|
find_library(LIBDL NAMES dl)
|
|
|
|
if ($ENV{DEBUG_BUILD})
|
|
add_definitions(-DDEBUG_BUILD)
|
|
endif ($ENV{DEBUG_BUILD})
|
|
|
|
# Set the program name defines. Must be at this level due to unit tests.
|
|
add_definitions(-DPROG_NAME_INVOKER="cutefish-invoker")
|
|
add_definitions(-DPROG_NAME_SINGLE_INSTANCE="cutefish-single-instance")
|
|
|
|
# applauncherd will try to load single-instance using this path
|
|
add_definitions(-DSINGLE_INSTANCE_PATH="/usr/bin/cutefish-single-instance")
|
|
|
|
# Disable debug logging, only error and warning messages get logged
|
|
# Currently effective only for invoker. Launcher part recognizes --debug
|
|
# which enables console echoing and debug messages.
|
|
add_definitions(-DDEBUG_LOGGING_DISABLED)
|
|
|
|
# Build with test coverage switch if BUILD_COVERAGE environment variable is set
|
|
if ($ENV{BUILD_COVERAGE})
|
|
set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} --coverage -DWITH_COVERAGE")
|
|
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} --coverage -DWITH_COVERAGE")
|
|
set(CMAKE_LD_FLAGS "${CMAKE_LD_FLAGS} --coverage")
|
|
endif ($ENV{BUILD_COVERAGE})
|
|
|
|
# Sub build: applauncherd
|
|
add_subdirectory(src)
|
|
|
|
# Install html documentation
|
|
install(DIRECTORY doc/implementation-documentation DESTINATION ${CMAKE_INSTALL_FULL_DOCDIR} OPTIONAL)
|
|
install(DIRECTORY doc/user-documentation DESTINATION ${CMAKE_INSTALL_FULL_DOCDIR} OPTIONAL)
|
|
install(DIRECTORY doc/mdeclarativecache-documentation DESTINATION ${CMAKE_INSTALL_FULL_DOCDIR} OPTIONAL)
|