2021-11-16 07:59:13 +00:00
|
|
|
cmake_minimum_required(VERSION 3.15 FATAL_ERROR)
|
|
|
|
set(PROJECT_CONTACT romange@gmail.com)
|
|
|
|
|
|
|
|
enable_testing()
|
|
|
|
|
|
|
|
set(CMAKE_EXPORT_COMPILE_COMMANDS 1)
|
|
|
|
|
|
|
|
# Set targets in folders
|
|
|
|
set_property(GLOBAL PROPERTY USE_FOLDERS ON)
|
|
|
|
project(DRAGONFLY C CXX)
|
|
|
|
set(CMAKE_CXX_STANDARD 17)
|
|
|
|
|
|
|
|
# We must define all the required variables from the root cmakefile, otherwise
|
|
|
|
# they just disappear.
|
2021-11-18 15:14:05 +00:00
|
|
|
set(CMAKE_MODULE_PATH "${CMAKE_CURRENT_SOURCE_DIR}/helio/cmake" ${CMAKE_MODULE_PATH})
|
2021-11-16 07:59:13 +00:00
|
|
|
option(BUILD_SHARED_LIBS "Build shared libraries" OFF)
|
2022-06-15 16:19:59 +00:00
|
|
|
option(DF_USE_SSL "Provide support for SSL connections" ON)
|
2021-11-16 07:59:13 +00:00
|
|
|
|
2023-04-07 05:38:12 +00:00
|
|
|
find_package(OpenSSL)
|
|
|
|
|
2021-11-16 07:59:13 +00:00
|
|
|
include(third_party)
|
2022-05-30 05:49:16 +00:00
|
|
|
include(internal)
|
2021-11-16 07:59:13 +00:00
|
|
|
|
2023-04-09 13:41:10 +00:00
|
|
|
set(USE_FB2 ON CACHE BOOL "")
|
|
|
|
|
2022-02-25 08:03:42 +00:00
|
|
|
include_directories(src)
|
2021-11-18 15:14:05 +00:00
|
|
|
include_directories(helio)
|
2021-11-16 07:59:13 +00:00
|
|
|
|
2021-11-18 15:14:05 +00:00
|
|
|
add_subdirectory(helio)
|
2022-02-25 08:03:42 +00:00
|
|
|
add_subdirectory(src)
|
2022-09-20 08:10:19 +00:00
|
|
|
|
|
|
|
include(cmake/Packing.cmake)
|