-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCMakeLists.txt
39 lines (34 loc) · 1.07 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
# CMakeList.txt : Top-level CMake project file, do global configuration
# and include sub-projects here.
#
cmake_minimum_required (VERSION 3.8)
project ("AdvancedCPP")
set (CMAKE_CXX_STANDARD 17)
include_directories(
"."
"inc"
)
include_directories("src/1-Inheritance")
include_directories("src/2-SmartPointer")
include_directories("src/3-Static")
include_directories("src/4-CPUArchitecture")
include_directories("src/5-Templates")
include_directories("src/6-Exceptions")
include_directories("src/7-CustomComparators")
include_directories("src/8-Cpp11Features")
add_subdirectory("src")
file (GLOB_RECURSE SRC_FILES CONFIGURE_DEPENDS
${CMAKE_CURRENT_SOURCE_DIR}/src/*.c
${CMAKE_CURRENT_SOURCE_DIR}/src/*.cpp
)
message(STATUS "sources to PROJECT_SOURCE_DIR: ${SRC_FILES}")
add_executable(${PROJECT_NAME} "main.cpp" ${SRC_FILES})
if (UNIX)
find_package(Threads REQUIRED)
if(THREADS_HAVE_PTHREAD_ARG)
target_compile_options(${PROJECT_NAME} PUBLIC "-pthread")
endif()
if(CMAKE_THREAD_LIBS_INIT)
target_link_libraries(${PROJECT_NAME} "${CMAKE_THREAD_LIBS_INIT}")
endif()
endif (UNIX)