File tree Expand file tree Collapse file tree 1 file changed +14
-15
lines changed
Expand file tree Collapse file tree 1 file changed +14
-15
lines changed Original file line number Diff line number Diff line change @@ -6,21 +6,20 @@ cmake_minimum_required(VERSION 3.5...4.0)
66
77project (type_index_subdir_test LANGUAGES CXX)
88
9- add_subdirectory (../../../assert boostorg/assert)
10- add_subdirectory (../../../core boostorg/core)
11- add_subdirectory (../../../config boostorg/config)
12- add_subdirectory (../../../container_hash boostorg/container_hash)
13- add_subdirectory (../../../describe boostorg/describe)
14- add_subdirectory (../../../detail boostorg/detail)
15- add_subdirectory (../../../integer boostorg/integer)
16- add_subdirectory (../../../move boostorg/move)
17- add_subdirectory (../../../mp11 boostorg/mp11)
18- add_subdirectory (../../../preprocessor boostorg/preprocessor)
19- add_subdirectory (../../../smart_ptr boostorg/smart_ptr)
20- add_subdirectory (../../../static_assert boostorg/static_assert)
21- add_subdirectory (../../../throw_exception boostorg/throw_exception)
22- add_subdirectory (../../../type_traits boostorg/type_traits)
23-
9+ foreach (dep IN ITEMS
10+ assert
11+ config
12+ core
13+ container_hash
14+ describe
15+ mp11
16+ smart_ptr
17+ static_assert
18+ throw_exception
19+ unordered
20+ predef)
21+ add_subdirectory (../../../${dep} boostorg/${dep} )
22+ endforeach ()
2423add_subdirectory (../../ boostorg/type_index)
2524
2625enable_testing ()
You can’t perform that action at this time.
0 commit comments