NOISSUE revert to dumping all build artifacts to the root

This fixes unit tests on Windows... Windows has no mechanism to set library lookup path.
This commit is contained in:
Petr Mrázek
2016-05-01 03:49:46 +02:00
parent 80b28e7d49
commit b0bfffcd90
3 changed files with 8 additions and 4 deletions

View File

@ -45,5 +45,5 @@ function(add_unit_test name)
target_include_directories(${name}_test PRIVATE "${TEST_RESOURCE_PATH}/UnitTest/")
add_test(NAME ${name} COMMAND ${name}_test)
add_test(NAME ${name} COMMAND ${name}_test WORKING_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR})
endfunction()