New-Cli-Installer/CMakeLists.txt
Vladislav Nepogodin 70773e825e
🔖 Bump version
2024-05-12 01:23:26 +04:00

159 lines
4.1 KiB
CMake

cmake_minimum_required(VERSION 3.15)
list(APPEND CMAKE_MODULE_PATH "${CMAKE_CURRENT_SOURCE_DIR}/cmake")
##
## PROJECT
## name and version
##
project(cachyos-installer
VERSION 0.7.0
LANGUAGES CXX)
##
## INCLUDE
##
include(GNUInstallDirs)
include(StandardProjectSettings)
include(CompilerWarnings)
include(EnableCcache)
include(Linker)
include(StaticAnalyzers)
include(Sanitizers)
include(CPM)
#find_package(PkgConfig REQUIRED)
#pkg_check_modules(
# GLIBMM
# REQUIRED
# IMPORTED_TARGET
# glibmm-2.4>=2.56.0)
CPMAddPackage(
NAME ftxui
GITHUB_REPOSITORY vnepogodin/ftxui
GIT_TAG "c++20"
EXCLUDE_FROM_ALL YES
)
CPMAddPackage(
NAME fmt
GITHUB_REPOSITORY fmtlib/fmt
GIT_TAG 10.2.1
EXCLUDE_FROM_ALL YES
)
CPMAddPackage(
NAME tomlplusplus
GITHUB_REPOSITORY marzer/tomlplusplus
GIT_TAG 1f7884e59165e517462f922e7b6de131bd9844f3
EXCLUDE_FROM_ALL YES
)
CPMAddPackage(
NAME spdlog
GITHUB_REPOSITORY gabime/spdlog
GIT_TAG 62302019babd8fdf63c1c6dc4c9faa48d441a7f0
EXCLUDE_FROM_ALL YES
)
CPMAddPackage(
NAME rapidjson
GITHUB_REPOSITORY Tencent/rapidjson
GIT_TAG ab1842a2dae061284c0a62dca1cc6d5e7e37e346
EXCLUDE_FROM_ALL YES
)
if(NOT ENABLE_DEVENV)
CPMAddPackage(
NAME cpr
GITHUB_REPOSITORY libcpr/cpr
GIT_TAG 7cd69d2cc3105a3920da765e285d2a89d2247f0d
EXCLUDE_FROM_ALL YES
)
endif()
CPMAddPackage(
NAME range-v3
GITHUB_REPOSITORY ericniebler/range-v3
GIT_TAG 53c40dd628450c977ee1558285ff43e0613fa7a9
EXCLUDE_FROM_ALL YES
)
CPMAddPackage(
NAME ctre
GITHUB_REPOSITORY hanickadot/compile-time-regular-expressions
GIT_TAG v3.8.1
EXCLUDE_FROM_ALL YES
)
##
## CONFIGURATION
##
if(CMAKE_CXX_COMPILER_ID MATCHES ".*Clang")
set(CMAKE_CXX_FLAGS_RELEASE "${CMAKE_CXX_FLAGS_RELEASE} -flto=thin -fwhole-program-vtables")
set(CMAKE_EXE_LINKER_FLAGS_RELEASE "${CMAKE_EXE_LINKER_FLAGS_RELEASE} -flto=thin -fwhole-program-vtables")
elseif(CMAKE_CXX_COMPILER_ID STREQUAL "GNU")
set(CMAKE_CXX_FLAGS_RELEASE "${CMAKE_CXX_FLAGS_RELEASE} -flto -fwhole-program -fuse-linker-plugin")
endif()
# Link this 'library' to set the c++ standard / compile-time options requested
add_library(project_options INTERFACE)
target_compile_features(project_options INTERFACE cxx_std_20)
##
## Target
##
add_executable(${PROJECT_NAME}
src/view.hpp
src/definitions.hpp
src/config.cpp src/config.hpp
src/utils.cpp src/utils.hpp
src/cpu.cpp src/cpu.hpp
src/pacmanconf_repo.cpp src/pacmanconf_repo.hpp
src/initcpio.cpp src/initcpio.hpp
src/chwd_profiles.cpp src/chwd_profiles.hpp
src/disk.cpp src/disk.hpp
src/drivers.cpp src/drivers.hpp
src/widgets.cpp src/widgets.hpp
src/follow_process_log.hpp src/follow_process_log.cpp
src/crypto.cpp src/crypto.hpp
src/misc.cpp src/misc.hpp
src/simple_tui.cpp src/simple_tui.hpp
src/tui.cpp src/tui.hpp
src/main.cpp
)
# Link this 'library' to use the warnings specified in CompilerWarnings.cmake
add_library(project_warnings INTERFACE)
set_project_warnings(project_warnings)
# Add linker configuration
configure_linker(project_options)
# sanitizer options if supported by compiler
enable_sanitizers(project_options)
# Prepare RapidJSON (RapidJSON is a header-only library)
set(RAPIDJSON_INCLUDE_DIR "${rapidjson_SOURCE_DIR}/include")
# Prepare FTXUI depends
target_link_libraries(screen PRIVATE range-v3::range-v3)
target_link_libraries(dom PRIVATE range-v3::range-v3)
target_link_libraries(component PRIVATE range-v3::range-v3)
include_directories(${CMAKE_SOURCE_DIR}/src ${RAPIDJSON_INCLUDE_DIR})
if(COS_INSTALLER_BUILD_TESTS)
add_subdirectory(tests)
endif()
target_link_libraries(${PROJECT_NAME} PRIVATE project_warnings project_options spdlog::spdlog fmt::fmt ftxui::screen ftxui::dom ftxui::component range-v3::range-v3 ctre::ctre tomlplusplus::tomlplusplus)
if(NOT ENABLE_DEVENV)
target_link_libraries(${PROJECT_NAME} PRIVATE cpr::cpr)
endif()
option(ENABLE_UNITY "Enable Unity builds of projects" OFF)
if(ENABLE_UNITY)
# Add for any project you want to apply unity builds for
set_target_properties(${PROJECT_NAME} PROPERTIES UNITY_BUILD ON)
endif()
install(
TARGETS ${PROJECT_NAME}
RUNTIME DESTINATION ${CMAKE_INSTALL_BINDIR}
)