generated from CoolLibs/library-template
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
CMakeLists.txt
33 lines (27 loc) · 1 KB
/
CMakeLists.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
cmake_minimum_required(VERSION 3.20)
set(WARNINGS_AS_ERRORS_FOR_OS_NAME OFF CACHE BOOL "ON iff you want to treat warnings as errors")
add_library(os_name)
add_library(os_name::os_name ALIAS os_name)
target_compile_features(os_name PUBLIC cxx_std_11)
# ---Add source files---
if(WARNINGS_AS_ERRORS_FOR_OS_NAME)
target_include_directories(os_name PUBLIC include)
else()
target_include_directories(os_name SYSTEM PUBLIC include)
endif()
file(GLOB_RECURSE SRC_FILES CONFIGURE_DEPENDS src/*.cpp)
target_sources(os_name PRIVATE ${SRC_FILES})
# ---Set warning level---
if(MSVC)
target_compile_options(os_name PRIVATE /W4)
else()
target_compile_options(os_name PRIVATE -Wall -Wextra -Wpedantic -pedantic-errors -Wconversion -Wsign-conversion)
endif()
# ---Maybe enable warnings as errors---
if(WARNINGS_AS_ERRORS_FOR_OS_NAME)
if(MSVC)
target_compile_options(os_name PRIVATE /WX)
else()
target_compile_options(os_name PRIVATE -Werror)
endif()
endif()