blender/tests/gtests/CMakeLists.txt
Brecht Van Lommel 53d203dea8 Tests: move remaining gtests into their own module folders
And make them part of the blender_test runner. The one exception is blenlib
performance tests, which we don't want to run by default. They remain in their
own executable.

Differential Revision: https://developer.blender.org/D8498
2020-08-10 18:14:00 +02:00

12 lines
282 B
CMake

if(WITH_GTESTS)
# Otherwise we get warnings here that we cant fix in external projects
remove_strict_flags()
# Build common test executable used by most tests
add_subdirectory(runner)
# Build utility library used by test executables
add_subdirectory(testing)
endif()