-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCMakeLists.txt
81 lines (62 loc) · 2.38 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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
cmake_minimum_required(VERSION 3.10)
# set ext
if (WIN32)
message(STATUS "defining the executable file suffix")
set(CMAKE_EXECUTABLE_SUFFIX_CXX .exe)
endif()
# set the project name
project(huffPP VERSION 0.0.2)
if(NOT CMAKE_BUILD_TYPE)
set(CMAKE_BUILD_TYPE Debug)
message(STATUS "Build type not specified: Use Debug by default")
endif(NOT CMAKE_BUILD_TYPE)
# set additional compiler flags
if (CMAKE_CXX_COMPILER_ID STREQUAL "Clang")
if (CMAKE_CXX_COMPILER_FRONTEND_VARIANT STREQUAL "MSVC")
message(STATUS "Compiling with CLANG_CL")
set(CMAKE_COMPILER_IS_CLANG_CL true)
elseif (CMAKE_CXX_COMPILER_FRONTEND_VARIANT STREQUAL "GNU")
message(STATUS "Compiling with CLANG")
set(CMAKE_COMPILER_IS_CLANG true)
endif()
endif()
if (CMAKE_CXX_COMPILER_ID STREQUAL "GNU")
message(STATUS "Compiling with GCC")
set(CMAKE_COMPILER_IS_GCC true)
endif()
if (CMAKE_CXX_COMPILER_ID STREQUAL "MSVC")
message(STATUS "Compiling with MSVC")
set(CMAKE_COMPILER_IS_MSVC true)
endif()
if (CMAKE_BUILD_TYPE MATCHES Release)
message("Compiling in Release Mode")
add_compile_options(-DNDEBUG)
endif()
if (WIN32)
add_definitions(-D_CRT_SECURE_NO_WARNINGS)
endif()
if (CMAKE_COMPILER_IS_MSVC)
message(STATUS "Generating MSVC Additional Arguments")
add_compile_options(/W4 /MP /utf-8)
elseif (CMAKE_COMPILER_IS_GCC)
message(STATUS "Generating GCC Additional Arguments")
add_compile_options(-Wall -Wextra -Wpedantic -Wno-unused-parameter -Wno-unused-function -Wdouble-promotion -Wformat-overflow -Wformat-security -Wnull-dereference -Wmisleading-indentation -Wconversion -Wshadow -Wcast-qual -Wcast-align -Waddress -D__USE_MINGW_ANSI_STDIO=1)
if (${CMAKE_CXX_COMPILER_VERSION} VERSION_GREATER_EQUAL 10.0)
if (CMAKE_BUILD_TYPE MATCHES Debug)
add_compile_options(-fanalyzer)
endif()
add_compile_options(-Warith-conversion)
endif()
elseif (CMAKE_COMPILER_IS_CLANG OR CMAKE_COMPILER_IS_CLANG_CL)
message(STATUS "Generating Clang Additional Arguments")
add_compile_options(-Wall -Wextra -Werror -Wpedantic -Wno-unused-parameter -Wno-unused-function)
endif()
file(GLOB_RECURSE HUFFPP_SOURCES RELATIVE ${CMAKE_SOURCE_DIR} "src/huffman_test.cpp")
# add the executable
add_executable(huffpp ${HUFFPP_SOURCES})
# set c++ version
set_target_properties(huffpp PROPERTIES
CXX_STANDARD 20
CXX_STANDARD_REQUIRED ON
CXX_EXTENSIONS OFF
)