-
Notifications
You must be signed in to change notification settings - Fork 0
/
CMakeLists.txt
168 lines (112 loc) · 4.62 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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
cmake_minimum_required(VERSION 3.25)
project(cplusplus_demo)
set(CMAKE_CXX_STANDARD 20)
# 最高优化级别
set(CMAKE_CXX_FLAGS_RELEASE "${CMAKE_CXX_FLAGS_RELEASE} -O3")
add_executable(2.1.nullptr
2.1/nullptr.cpp)
add_executable(2.1.constexpr
2.1/constexpr.cpp)
add_executable(2.2.if_switch
2.2/if_switch_variables.cpp)
add_executable(2.2.initializer_list
2.2/initializer_list.cpp)
add_executable(2.2.structured_binding
2.2/structured_binding.cpp)
add_executable(2.3.auto
2.3/auto.cpp)
add_executable(2.3.decltype
2.3/decltype.cpp)
add_executable(2.3.tail_type_inference
2.3/tail_type_inference.cpp)
add_executable(2.3.decltype_auto
2.3/decltype_auto.cpp)
add_executable(2.4.if_constexpr
2.4/if_constexpr.cpp)
add_executable(2.4.for_range
2.4/for_range.cpp)
add_executable(2.5.extern_templates
2.5/extern_templates.h 2.5/extern_templates.cpp 2.5/extern_templates_2.cpp)
add_executable(2.5.type_alias_templates
2.5/type_alias_templates.cpp)
add_executable(2.5.variadic_templates
2.5/variadic_templates.cpp)
add_executable(2.5.fold_expression
2.5/fold_expression.cpp)
add_executable(2.5.non-type_template_parameter_deduction
2.5/non-type_template_parameter_deduction.cpp)
add_executable(2.6.delegate_constructor
2.6/delegate_constructor.cpp)
add_executable(2.6.inheritance_constructor
2.6/inheritance_constructor.cpp)
add_executable(2.6.override_final 2.6/override_final.cpp)
add_executable(2.6.delete_default
2.6/delete_default.cpp)
add_executable(2.6.strongly_typed_enumerations
2.6/strongly_typed_enumerations.cpp)
add_executable(3.1.lambda 3.1/lambda.cpp)
add_executable(3.1.generic_lambda
3.1/generic_lambda.cpp)
add_executable(3.2.std_function
3.2/std_function.cpp)
add_executable(3.2.bin_placeholder 3.2/bin_placeholder.cpp)
add_executable(3.3.lvalue_rvalue 3.3/lvalue_rvalue.cpp)
add_executable(3.3.move_semantics
3.3/move_semantics.cpp)
add_executable(3.3.perfect_forwarding
3.3/perfect_forwarding.cpp)
add_executable(4.1.array
4.1/array.cpp)
add_executable(4.1.forward_list
4.1/forward_list.cpp 4.1/forward_list.cpp)
add_executable(4.2.unordered_map
4.2/unordered_map.cpp)
add_executable(4.3.tuple
4.3/tuple.cpp 4.3/tuple.cpp)
add_executable(5.2.shared_ptr
5.2/shared_ptr.cpp)
add_executable(5.3.unique_ptr
5.3/unique_ptr.cpp)
add_executable(5.4.weak_ptr
5.4/weak_ptr.cpp)
add_executable(6.2.regex
6.2/regex.cpp 6.2/regex.cpp)
add_executable(7.1.thread
7.1/thread.cpp)
add_executable(7.2.mutex_lock_guard
7.2/mutex_lock_guard.cpp)
add_executable(7.2.mutex_unique_lock
7.2/mutex_unique_lock.cpp)
add_executable(7.3.future
7.3/future.cpp)
add_executable(7.4.condition_variable
7.4/condition_variable.cpp)
add_executable(7.5.no_atomic_bug
7.5/no_atomic_bug.cpp)
# C++ 标准库通常不需要额外的链接步骤,因为编译器会自动处理。然而,有些情况下,某些特性可能需要特定的库支持,例如多线程和原子操作。这种情况下,需要链接到相应的库(比如 -lpthread 或 -latomic)。
# 一般来说,需要额外链接的库主要集中在以下几个方面:
# 并发和多线程:例如 <thread>, <mutex>, <condition_variable>, <future>, <atomic> 等头文件可能需要 -lpthread 或 -latomic。
# 数学库:例如 <complex> 或 <valarray> 等头文件可能需要 -lm。
# 文件系统库:例如 <filesystem> 头文件可能需要 -lstdc++fs(在旧的 GCC 版本中)。
# 上述库是否需要额外链接,很大程度上取决于你的编译器和它的版本。新版本的 GCC 和 Clang 通常可以自动处理这些库。如果你在链接时遇到问题,你应该检查你的编译器和它的文档,看看是否需要链接到这些库。
add_executable(7.5.atomic
7.5/atomic.cpp)
target_link_libraries(7.5.atomic atomic)
add_executable(7.5.1.memory_order_relaxed
7.5/1.memory_order_relaxed.cpp)
add_executable(7.5.2.memory_order_release_consume
7.5/2.memory_order_release_consume.cpp)
add_executable(7.5.3.memory_order_release_acquire
7.5/3.memory_order_release_acquire.cpp)
add_executable(7.5.4.memory_order_seq_cst
7.5/4.memory_order_seq_cst.cpp)
add_executable(9.1.long_long_int
9.1/long_long_int.cpp)
add_executable(9.2.noexcept
9.2/noexcept.cpp)
add_executable(9.3.literal
9.3/literal.cpp)
add_executable(9.4.alignas_alignof
9.4/alignas_alignof.cpp)
add_executable(10.1.concept
10.1/concept.cpp)