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

146 lines
3.2 KiB
CMake

cmake_minimum_required(VERSION 3.16)
project(microirc LANGUAGES C)
include(GNUInstallDirs)
set(UIRC_VERSION "2021.01.03")
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/commands.c
src/converters.c
src/memory.c
src/string.c
src/tokenizers.c
)
set(UIRC_HEADERS
src/assemblers.h
src/commands.h
src/converters.h
src/errors.h
src/modes.h
src/replies.h
src/tokenizers.h
src/types.h
src/uirc.h
)
#
# Features
#
if (BUILD_IRCV3)
message(STATUS "IRCv3 capabilities are going to be built.")
add_compile_definitions(UIRC_IRCV3)
set(UIRC_SOURCE ${UIRC_SOURCE}
src/tags.c
src/capabilities.c
)
set(UIRC_HEADERS ${UIRC_HEADERS}
src/tags.h
src/capabilities.h
)
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
)
set(UIRC_HEADERS ${UIRC_HEADERS}
src/validators.h
)
endif()
if (BUILD_HELPERS)
message(STATUS "Helper functions are going to be built.")
add_compile_definitions(UIRC_HELPERS)
endif()
if (BUILD_TESTS)
message(STATUS "Tests are going to be built.")
enable_testing()
macro(buildtest name source)
add_executable(${source} tests/${source}.c)
target_link_libraries(${source} uirc)
add_test(NAME ${name} COMMAND ${CMAKE_RUNTIME_OUTPUT_DIRECTORY}/${source})
endmacro()
buildtest(Tokenizer tokenizer)
buildtest(Overflow overflow)
buildtest(PrefixAssembler prefixassm)
buildtest(MessageAssembler msgassm)
buildtest(NumericCmds numericmds)
buildtest(IncorrectTrailing notrail)
buildtest(SpacedArguments spacedargs)
buildtest(StrTokMoveSave strtokmr)
buildtest(Junk junk)
if (BUILD_IRCV3)
buildtest(TagParser tagtok)
buildtest(TagAssembler tagassm)
if (BUILD_HELPERS)
buildtest(TimestampAssembly timestamp)
buildtest(TagBitMaskTknzr capbitmask)
endif()
endif()
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"
)