-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCMakeLists.txt
More file actions
73 lines (70 loc) · 2.97 KB
/
CMakeLists.txt
File metadata and controls
73 lines (70 loc) · 2.97 KB
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
cmake_minimum_required(VERSION 3.20)
project(principles_and_practice_using_cpp)
set(CMAKE_CXX_STANDARD 14)
include_directories(chapter2)
include_directories(chapter3)
include_directories(chapter4)
include_directories(chapter5)
include_directories(chapter6)
include_directories(chapter7)
include_directories(chapter8)
add_executable(principles_and_practice_using_cpp
# chapter2/hello_world.cpp
lib/std_lib_facilities.h
# chapter3/chapter3.cpp
# chapter4/chapter4.cpp
# chapter5/chapter5.cpp
# chapter6/calculator/calculator.cpp
# chapter6/calculator/calculator02buggy.cpp
# chapter6/exercise/chapter6.cpp
# chapter6/english_grammar/english_grammar.cpp
# chapter7/calculator/calculator.cpp
# chapter7/calculator/calculator08buggy.cpp
# chapter8/chapter8.cpp
# chapter8/simple_exercise1/my.cpp
# chapter8/simple_exercise1/use.cpp
# chapter8/simple_exercise2/swap_test.cpp
# chapter8/simple_exercise3/namespace_x_y_and_z.cpp
# chapter8/calculator/variable/variable.cpp
# chapter8/calculator/token/token.cpp
# chapter8/calculator/calculator.cpp
# chapter9/date/Chrono.cpp
# chapter9/date/date_main.cpp
# chapter9/exercise2_and_3_name_pairs/name_pairs.cpp
# chapter9/exercise2_and_3_name_pairs/exercise2_and_3.cpp
# chapter9/exercise4/exercise4.cpp
# chapter9/exercise5/Book/Book.cpp
# chapter9/exercise5/exercise5.cpp
# chapter9/exercise5/Chrono/Chrono.cpp
# chapter9/exercise13/Rational.cpp
# chapter9/exercise13/exercise13.cpp
# chapter9/money/Money.cpp
# chapter9/money/exercise14_and_15.cpp
# chapter10/10_5_code_example/Reading.cpp
# chapter10/10_6_code_example/fill_vector.cpp
# chapter10/10_10_code_example/end_of_loop.cpp
# chapter10/practice_1/Point.cpp
# chapter10/practice_1/practice_1.cpp
# chapter10/practice_2_to_7/Point.cpp
# chapter10/practice_2_to_7/practice_2_to_7.cpp
# chapter10/exercise_1/exercise_1.cpp
# chapter10/exercise_2/store_temps.cpp
# chapter10/exercise_3/temp_stats.cpp
# chapter10/exercise_4/temp_stats.cpp
# chapter10/exercise_5/exercise_5.cpp
# chapter10/exercise_6/Roman_int.cpp
# chapter10/exercise_6/exercise_6.cpp
# chapter10/exercise_7/calculator/constant.h
# chapter10/exercise_7/calculator/token/token.cpp
# chapter10/exercise_7/calculator/variable/variable.cpp
# chapter10/exercise_7/calculator/calculator.cpp
# chapter10/exercise_8/exercise_8.cpp
# chapter10/exercise_9/exercise_9.cpp
# chapter10/exercise_11/exercise_11.cpp
# chapter11/11_2_1_code_example/code_example.cpp
# chapter11/try_it_out_1/try_it_out_1.cpp
# chapter11/try_it_out_2/try_it_out_2.cpp
# chapter11/11_2_2_code_example/code_example.cpp
# chapter11/try_it_out_3/try_it_out_3.cpp
chapter11/try_it_out_4/try_it_out_4.cpp
)