File tree Expand file tree Collapse file tree 2 files changed +11
-10
lines changed Expand file tree Collapse file tree 2 files changed +11
-10
lines changed Original file line number Diff line number Diff line change 1- # Discover the tools that use CMake in the subdirectories.
2- # Note that explicit cmake invocation is required every time a new tool
3- # is added or removed.
4- file (GLOB entries *)
5- foreach (entry ${entries} )
6- if (IS_DIRECTORY ${entry} AND EXISTS ${entry} /CMakeLists.txt)
7- add_subdirectory (${entry} )
8- endif ()
9- endforeach (entry)
1+ add_subdirectory (archer)
2+ add_subdirectory (Modules)
3+ add_subdirectory (multiplex)
4+ add_subdirectory (omptest)
Original file line number Diff line number Diff line change 55##===----------------------------------------------------------------------===##
66
77# Target: ompTest library unit tests
8- file (GLOB UNITTEST_SOURCES "unittests/*.cpp" )
8+ set (UNITTEST_SOURCES
9+ unittests/asserter-seq-test .cpp
10+ unittests/internal -event-eq-test .cpp
11+ unittests/internal -event-tostring-test .cpp
12+ unittests/internal -util-test
13+ unittests/main-test .cpp
14+ )
915add_executable (omptest-unittests ${UNITTEST_SOURCES} )
1016
1117# Add local and LLVM-provided GoogleTest include directories.
You can’t perform that action at this time.
0 commit comments