remwharead/CMakeLists.txt

53 lines
1.5 KiB
CMake
Raw Normal View History

2019-10-30 04:47:38 +01:00
# Support version 3.9 and above, but use policy settings up to 3.14.
# 3.9 is needed for project description.
cmake_minimum_required(VERSION 3.9...3.14)
# Ranges are supported from 3.12, set policy to current for < 3.12.
if(${CMAKE_VERSION} VERSION_LESS 3.12)
cmake_policy(VERSION ${CMAKE_MAJOR_VERSION}.${CMAKE_MINOR_VERSION})
endif()
2019-05-11 02:52:33 +02:00
project(remwharead
2019-10-15 16:01:18 +02:00
VERSION 0.8.5
2019-10-30 04:47:38 +01:00
DESCRIPTION "Saves URIs of things you want to remember in a database."
LANGUAGES CXX)
set(CMAKE_MODULE_PATH "${PROJECT_SOURCE_DIR}/cmake")
include(GNUInstallDirs)
# All custom build switches.
option(WITH_MAN "Compile and install manpage." YES)
option(WITH_TESTS "Compile tests." NO)
option(WITH_MOZILLA "Build and install wrapper for Mozilla browsers." YES)
option(BUILD_SHARED_LIBS "Build shared libraries." YES)
set(MOZILLA_NMH_DIR "${CMAKE_INSTALL_LIBDIR}/mozilla/native-messaging-hosts"
CACHE STRING "Directory for the Mozilla extension wrapper.")
2019-10-30 05:04:00 +01:00
set(CMAKE_BUILD_TYPE "Release" CACHE STRING "The type of build.")
2019-05-11 02:52:33 +02:00
set(CMAKE_CXX_STANDARD 17)
2019-05-11 02:52:33 +02:00
set(CMAKE_CXX_STANDARD_REQUIRED ON)
set(CMAKE_CXX_EXTENSIONS OFF)
include(debug_flags)
2019-05-11 02:52:33 +02:00
add_subdirectory(src)
2019-07-26 07:08:13 +02:00
add_subdirectory(src/lib)
add_subdirectory(include)
2019-07-26 07:08:13 +02:00
add_subdirectory(src/cli)
add_subdirectory(pkg-config)
add_subdirectory(cmake)
2019-05-11 02:52:33 +02:00
if(WITH_MAN)
add_subdirectory(man)
2019-05-11 02:52:33 +02:00
endif()
if(WITH_MOZILLA)
add_subdirectory(browser-plugins/webextension/native-wrapper)
endif()
2019-05-11 02:52:33 +02:00
if(WITH_TESTS)
add_subdirectory(tests)
2019-05-11 02:52:33 +02:00
endif()
2019-05-18 05:09:56 +02:00
2019-08-06 12:47:45 +02:00
include(cmake/packages.cmake)