-
Notifications
You must be signed in to change notification settings - Fork 943
/
CMakeLists.txt
47 lines (39 loc) · 885 Bytes
/
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
cmake_minimum_required(VERSION 3.5)
project(CppDesignPatterns)
set(PATTERNS
abstract-factory
adapter
bridge
builder
chain-of-responsibility
command
composite
decorator
facade
factory-method
flyweight
interpreter
iterator
mediator
memento
observer
prototype
proxy
singleton
state
strategy
template-method
visitor
)
foreach(_dir IN ITEMS ${PATTERNS})
file(GLOB _files "${_dir}/*.cpp")
message(STATUS "Pattern `${_dir}':")
foreach(_file IN ITEMS ${_files})
get_filename_component(_file_name
${_file} NAME
)
set(_project_name "${_file_name}")
message(STATUS " ${_dir}/${_file_name} is going to be built")
add_executable(${_project_name} "${_dir}/${_file_name}")
endforeach()
endforeach()