You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
108 lines
2.9 KiB
108 lines
2.9 KiB
# ------------------------------------------ |
|
# User config between these lines |
|
|
|
# Set project name |
|
set(PROJECT "manafiles") |
|
|
|
# ------------------------------------------ |
|
|
|
cmake_minimum_required(VERSION 3.16 FATAL_ERROR) |
|
project(${PROJECT} CXX) |
|
|
|
set(CMAKE_INSTALL_PREFIX /usr) |
|
include(GNUInstallDirs) |
|
|
|
# ------------------------------------------ |
|
# Setup C++ compiler |
|
|
|
set(CMAKE_CXX_STANDARD 17) |
|
set(CMAKE_CXX_STANDARD_REQUIRED ON) |
|
set(CMAKE_CXX_EXTENSIONS OFF) |
|
|
|
# Compiler flags used for all build types |
|
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wall -Wextra -Wpedantic") |
|
# -Wall = All warnings about contructions that are easily avoidable |
|
# -Wextra = Extra warning flags not covered by -Wall |
|
# -Wpedantic = Warnings for compiler extensions not part of the standard |
|
|
|
# Set default build type if not specified |
|
set(DEFAULT_BUILD_TYPE Release) |
|
if(EXISTS ${CMAKE_SOURCE_DIR}/.git) |
|
set(DEFAULT_BUILD_TYPE Debug) |
|
endif() |
|
if(NOT CMAKE_BUILD_TYPE) |
|
set(CMAKE_BUILD_TYPE ${DEFAULT_BUILD_TYPE}) |
|
endif() |
|
|
|
# Set build type specific compiler flags |
|
message("--- ${CMAKE_BUILD_TYPE} ---") |
|
if(${CMAKE_BUILD_TYPE} STREQUAL Debug) |
|
set(CMAKE_CXX_FLAGS_DEBUG "${CMAKE_CXX_FLAGS_DEBUG} -Og -g -pg") |
|
# -Og = Optimizations that do not interfere with debugging |
|
# -g = Produce debugging information in OS's native format |
|
# -pg = Generate profile information for analysis with gprof |
|
# $ gprof <PROJECT> gmon.out > profile-data.txt |
|
elseif(${CMAKE_BUILD_TYPE} STREQUAL Release) |
|
set(CMAKE_CXX_FLAGS_RELEASE "${CMAKE_CXX_FLAGS_RELEASE} -O3") |
|
# -O3 = Optimizations that increase compilation time and performance |
|
endif() |
|
|
|
set(CMAKE_EXPORT_COMPILE_COMMANDS ON) |
|
|
|
# ------------------------------------------ |
|
# Configure source |
|
|
|
# Define include files |
|
include_directories( |
|
"src" |
|
"test" |
|
) |
|
|
|
# Define source files |
|
file(GLOB_RECURSE PROJECT_SOURCES "src/*.cpp") |
|
set(PROJECT_SOURCES ${PROJECT_SOURCES}) |
|
|
|
# Define test source files |
|
file(GLOB_RECURSE TEST_SOURCES "test/*.cpp") |
|
file(GLOB_RECURSE MAIN_SOURCES "src/*.cpp") |
|
set(TEST_SOURCES ${TEST_SOURCES} ${MAIN_SOURCES}) |
|
list(REMOVE_ITEM TEST_SOURCES "${CMAKE_SOURCE_DIR}/src/main.cpp") |
|
|
|
# ------------------------------------------ |
|
# Application target |
|
|
|
add_executable(${PROJECT} ${PROJECT_SOURCES}) |
|
target_link_libraries(${PROJECT}) |
|
|
|
install(TARGETS ${PROJECT} |
|
DESTINATION ${CMAKE_INSTALL_BINDIR} |
|
CONFIGURATIONS Release) |
|
|
|
# ------------------------------------------ |
|
# Execute target |
|
|
|
add_custom_target(run |
|
COMMAND ${PROJECT}) |
|
add_dependencies(run ${PROJECT}) |
|
|
|
# ------------------------------------------ |
|
# Unit test target |
|
|
|
add_executable(test ${TEST_SOURCES}) |
|
target_link_libraries(test) |
|
|
|
# ------------------------------------------ |
|
# Man page target |
|
|
|
add_subdirectory(doc) |
|
|
|
# ------------------------------------------ |
|
# Uninstall target |
|
|
|
configure_file( |
|
${CMAKE_SOURCE_DIR}/cmake/uninstall.cmake.in |
|
${CMAKE_BINARY_DIR}/cmake_uninstall.cmake |
|
@ONLY) |
|
|
|
add_custom_target(uninstall |
|
COMMAND ${CMAKE_COMMAND} -P ${CMAKE_BINARY_DIR}/cmake_uninstall.cmake)
|
|
|