-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCMakeLists.txt
44 lines (30 loc) · 1.16 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
# Set the minimum version of CMake that can be used
# To find the cmake version run
# $ cmake --version
set(CMAKE_BUILD_TYPE Debug)
# cmake_minimum_required(VERSION 3.5)
# Set the project name
project (hello_headers)
# Create a sources variable with a link to all cpp files to compile
# set(SOURCES
# src/finalValueAfterOperations.c
# src/main.c
# )
# Add an executable with the above sources
# add_executable(hello_headers ${SOURCES})
# Set the directories that should be included in the build command for this target
# when running g++ these will be included as -I/directory/path/
# target_include_directories(hello_headers
# PRIVATE
# ${PROJECT_SOURCE_DIR}/include
# )
# target_include_directories(hello_headers PUBLIC
# "${PROJECT_BINARY_DIR}"
# "${PROJECT_SOURCE_DIR}/tasks/2_twoSum"
# tasks/2_twoSum
# )
add_subdirectory(main)
# add_subdirectory(sublibrary2)
# add_subdirectory(subbinary)
add_subdirectory(tasks/2_twoSum)
add_subdirectory(tasks/2011_finalValueAfterOperations)