This repository has been archived on 2021-04-17. You can view files and clone it, but cannot push or open issues or pull requests.
uIRC/CMakeLists.txt

106 lines
2.4 KiB
CMake

cmake_minimum_required(VERSION 3.16)
project(microirc LANGUAGES C)
include(GNUInstallDirs)
set(UIRC_VERSION "2021.01.02")
add_compile_definitions(UIRC_VERSION="${UIRC_VERSION}")
OPTION(BUILD_HELPERS "Build message helpers" ON )
OPTION(BUILD_VALIDATORS "Build message validators" ON )
OPTION(BUILD_IRCV3 "Build IRCv3 components" ON )
OPTION(BUILD_TESTS "Build tests for ctest" OFF)
OPTION(CODE_ANALYZER "Analyze the code statically" OFF)
OPTION(CODE_COVERAGE "Build with coverage tools" OFF)
set(UIRC_SOURCE
src/assemblers.c
src/misc.c
src/tokenizers.c
)
set(UIRC_HEADERS
include/functions.h
include/helpers.h
include/mappings.h
include/types.h
include/uirc.h
)
#
# Features
#
if (BUILD_IRCV3)
message(STATUS "IRCv3 capabilities are going to be built.")
add_compile_definitions(UIRC_IRCV3)
endif()
if (BUILD_VALIDATORS)
message(STATUS "Message validators are going to be built.")
add_compile_definitions(UIRC_VALIDATORS)
set(UIRC_SOURCE ${UIRC_SOURCE} src/validators.c)
endif()
if (BUILD_HELPERS)
message(STATUS "Helper functions are going to be built.")
set(UIRC_SOURCE ${UIRC_SOURCE} src/helpers.c)
add_compile_definitions(UIRC_HELPERS)
if (BUILD_IRCV3)
set(UIRC_SOURCE ${UIRC_SOURCE} src/taghelpers.c)
endif()
endif()
if (BUILD_TESTS)
message(STATUS "Tests are going to be built.")
enable_testing()
add_subdirectory(tests)
endif()
add_library(uirc ${UIRC_SOURCE})
set(CMAKE_C_FLAGS_RELEASE "${CMAKE_C_FLAGS_RELEASE} -Werror")
add_compile_options(-pedantic)
if (CMAKE_C_COMPILER_ID STREQUAL "GNU")
add_compile_options(
-Wall
-Wextra
-Wformat-overflow=2
-Wformat-security
-Winit-self
-Wstrict-overflow=2
-Wstringop-overflow=2
-Walloc-zero
-Wduplicated-branches
-Wduplicated-cond
-Wtrampolines
-Wfloat-equal
-Wshadow
-Wunsafe-loop-optimizations
-Wparentheses
-fstack-check
)
if (CODE_ANALYZER)
add_compile_options(-fanalyzer)
endif()
elseif (CMAKE_C_COMPILER_ID STREQUAL "Clang")
add_compile_options(
-Weverything
-Wno-padded
-Wno-disabled-macro-expansion
)
if (CODE_COVERAGE)
add_compile_options(-fprofile-instr-generate -fcoverage-mapping)
endif()
endif()
separate_arguments(UIRC_HEADERS)
set_target_properties(uirc PROPERTIES
C_STANDARD 99
VERSION ${UIRC_VERSION}
SOVERSION ${UIRC_VERSION}
PUBLIC_HEADER "${UIRC_HEADERS}"
)
install(
TARGETS uirc
LIBRARY
PUBLIC_HEADER DESTINATION ${CMAKE_INSTALL_INCLUDEDIR}/uirc
)