gitea2rss/CMakeLists.txt

41 lines
1.1 KiB
CMake
Raw Normal View History

# Support version 3.6 and above, but use policy settings up to 3.17.
cmake_minimum_required(VERSION 3.6...3.17)
2019-08-09 21:07:10 +02:00
# 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-04-17 00:17:26 +02:00
project(gitea2rss
2020-05-01 20:31:45 +02:00
VERSION 0.5.2
2019-08-09 21:07:10 +02:00
LANGUAGES CXX)
2019-04-17 00:17:26 +02:00
2019-08-09 21:07:10 +02:00
# DESCRIPTION was introduced in version 3.9.
if(NOT (${CMAKE_VERSION} VERSION_LESS 3.9))
set(PROJECT_DESCRIPTION
"Generates RSS feeds from Gitea releases or tags.")
endif()
2019-08-09 21:07:10 +02:00
option(WITH_MAN "Compile and install manpage." YES)
option(WITH_TESTS "Compile tests." NO)
2019-04-17 00:17:26 +02:00
set(CMAKE_CXX_STANDARD 14)
set(CMAKE_CXX_STANDARD_REQUIRED ON)
set(CMAKE_CXX_EXTENSIONS OFF)
2020-10-24 15:41:07 +02:00
include(cmake/debug_flags.cmake)
2019-04-17 00:17:26 +02:00
find_package(PkgConfig REQUIRED)
pkg_check_modules(jsoncpp REQUIRED IMPORTED_TARGET jsoncpp)
2019-08-09 22:38:28 +02:00
# Some distributions do not contain Poco*Config.cmake recipes.
find_package(Poco COMPONENTS Foundation Net NetSSL CONFIG)
2019-04-17 00:17:26 +02:00
2019-08-09 21:07:10 +02:00
add_subdirectory(src)
2019-04-17 00:17:26 +02:00
if (WITH_MAN)
2019-08-09 21:07:10 +02:00
add_subdirectory(man)
2019-04-17 00:17:26 +02:00
endif()
if(WITH_TESTS)
2019-08-09 21:07:10 +02:00
add_subdirectory(tests)
endif()