Fix: Blender_test not working on windows.

This bumps the minimum requirement for cmake from 3.10 to 3.18 on windows
if `WITH_GTESTS` is enabled.

Reviewed By: sergey brecht sybren campbellbarton

Differential Revision: https://developer.blender.org/D8405
This commit is contained in:
Ray Molenkamp
2020-07-30 13:18:05 -06:00
parent 848cbe889b
commit 44928a2a8f
2 changed files with 8 additions and 3 deletions

View File

@@ -77,10 +77,11 @@ set(_GOOGLETEST_DISCOVER_TESTS_SCRIPT
)
gtest_discover_tests(blender_test
# So that the binary can find its shared libs on window.
WORKING_DIRECTORY "$<TARGET_FILE_DIR:blender>"
WORKING_DIRECTORY "${TEST_INSTALL_DIR}"
# So that it will run after the install phase that will copy the required libraries
DISCOVERY_MODE PRE_TEST
# So that unit tests know where to find files:
EXTRA_ARGS
--test-assets-dir "${CMAKE_SOURCE_DIR}/../lib/tests"
--test-release-dir "${CMAKE_INSTALL_PREFIX}/${BLENDER_VERSION}"
--test-release-dir "${TEST_INSTALL_DIR}/${BLENDER_VERSION}"
)