mirror of
https://github.com/CachyOS/New-Cli-Installer.git
synced 2025-01-23 14:32:22 +08:00
156 lines
4.1 KiB
CMake
156 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.5.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 756822ba39941e1e033f26e4c07547cc7058948c
|
|
EXCLUDE_FROM_ALL YES
|
|
)
|
|
CPMAddPackage(
|
|
NAME spdlog
|
|
GITHUB_REPOSITORY gabime/spdlog
|
|
GIT_TAG b75edfafca581e33be29ab51b9546b2e955c2853
|
|
EXCLUDE_FROM_ALL YES
|
|
)
|
|
CPMAddPackage(
|
|
NAME rapidjson
|
|
GITHUB_REPOSITORY Tencent/rapidjson
|
|
GIT_TAG 232389d4f1012dddec4ef84861face2d2ba85709
|
|
EXCLUDE_FROM_ALL YES
|
|
)
|
|
CPMAddPackage(
|
|
NAME cpr
|
|
GITHUB_REPOSITORY libcpr/cpr
|
|
GIT_TAG 5ae5fdeadfbbb784192c034be0222016123c94ad
|
|
EXCLUDE_FROM_ALL YES
|
|
)
|
|
CPMAddPackage(
|
|
NAME range-v3
|
|
GITHUB_REPOSITORY ericniebler/range-v3
|
|
GIT_TAG 3d6e6f56e5e1a3ec4befcc7695504ea23e1d52ab
|
|
EXCLUDE_FROM_ALL YES
|
|
)
|
|
|
|
##
|
|
## CONFIGURATION
|
|
##
|
|
set(CMAKE_CXX_FLAGS_RELEASE "${CMAKE_CXX_FLAGS_RELEASE} -flto")
|
|
|
|
if(CMAKE_CXX_COMPILER_ID STREQUAL "GNU")
|
|
set(CMAKE_CXX_FLAGS_RELEASE "${CMAKE_CXX_FLAGS_RELEASE} -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/screen_service.hpp src/screen_service.cpp
|
|
src/config.cpp src/config.hpp
|
|
src/utils.cpp src/utils.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
|
|
)
|
|
|
|
add_executable(test-exec-interactive
|
|
src/config.cpp src/config.hpp
|
|
src/utils.cpp src/utils.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_test.cpp
|
|
)
|
|
|
|
add_executable(test-process-tailing
|
|
src/config.cpp src/config.hpp
|
|
src/utils.cpp src/utils.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/test_proccess_tailing.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)
|
|
|
|
include_directories(${CMAKE_SOURCE_DIR}/src)
|
|
|
|
target_link_libraries(${PROJECT_NAME} PRIVATE project_warnings project_options spdlog::spdlog fmt::fmt ftxui::screen ftxui::dom ftxui::component cpr::cpr range-v3::range-v3)
|
|
target_link_libraries(test-exec-interactive PRIVATE project_warnings project_options spdlog::spdlog fmt::fmt ftxui::component cpr::cpr range-v3::range-v3)
|
|
target_link_libraries(test-process-tailing PRIVATE project_warnings project_options spdlog::spdlog fmt::fmt ftxui::component cpr::cpr)
|
|
|
|
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}
|
|
)
|