-
-
Notifications
You must be signed in to change notification settings - Fork 13
/
CMakeLists.txt
30 lines (23 loc) · 1002 Bytes
/
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
cmake_minimum_required(VERSION 3.21)
project(anyany LANGUAGES CXX)
option(AA_ENABLE_TESTING "enables testing" OFF)
### anyanylib ###
add_library(anyanylib INTERFACE)
target_include_directories(anyanylib INTERFACE "${CMAKE_CURRENT_SOURCE_DIR}/include")
set_target_properties(${PROJECT_NAME}lib PROPERTIES
CMAKE_CXX_EXTENSIONS OFF
LINKER_LANGUAGE CXX
CMAKE_CXX_STANDARD_REQUIRED ON
CXX_STANDARD 17)
### tests ###
if(AA_ENABLE_TESTING)
include(CTest)
add_subdirectory(tests)
endif()
if(MSVC)
# asks stupid MSVC to work as C++ standard says, asks separatelly MSVC-preprocessor to work as C++ standard says
# additionally asks MSVC to SHOW UP CORRECTLY __cplusplus VERSION OMG
# and of course disables two warnings about "oh, im stupid msvc, support of this attribute in C++17 is an extension..."
# THEN FCN IGNORE IT, IT IS FOR WHAT ATTRIBUTES EXIST
target_compile_options(${PROJECT_NAME}lib INTERFACE "/Zc:__cplusplus" "/Zc:preprocessor" "/permissive-" "/wd5051" "/wd4848")
endif()