diff options
Diffstat (limited to 'Tests/Testing')
-rw-r--r-- | Tests/Testing/CMakeLists.txt | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/Tests/Testing/CMakeLists.txt b/Tests/Testing/CMakeLists.txt index 3c2dd97..fdb85d3 100644 --- a/Tests/Testing/CMakeLists.txt +++ b/Tests/Testing/CMakeLists.txt @@ -34,7 +34,10 @@ FIND_LIBRARY(CMAKE_LIB ${Testing_BINARY_DIR}/../../Source/MinSizeRel ${Testing_BINARY_DIR}/../../Source/RelWithDebInfo) -LINK_LIBRARIES(${CMAKE_LIB}) +# Specify the same one for debug/optimized to increase coverage +LINK_LIBRARIES(${CMAKE_LIB} + debug ${CMAKE_LIB} + optimized ${CMAKE_LIB}) # # Include Dart |