blender/tests/CMakeLists.txt
Sergey Sharybin b53e35c655 Fix compilation error when building without Blender
Simply disabled python tests, they can't be run anyway (since blender target is
not enabled) and we don't have any player-related tests in that folder.
2017-08-08 11:32:33 +02:00

9 lines
102 B
CMake

# Python CTests
if(WITH_BLENDER)
add_subdirectory(python)
endif()
# GTest
add_subdirectory(gtests)