We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 02611dc commit b88f60dCopy full SHA for b88f60d
CMakeLists.txt
@@ -607,10 +607,12 @@ if(DONT_CARE_OF_VIRTUALS)
607
set(NEO_MOCKABLE_LIB_NAME ${NEO_RELEASE_LIB_NAME})
608
generate_runtime_lib(${NEO_RELEASE_LIB_NAME} TRUE TRUE)
609
else()
610
- set(NEO_MOCKABLE_LIB_NAME "igdrcl_lib_mockable") # Used by ULTS
611
set(NEO_RELEASE_LIB_NAME "igdrcl_lib_release") # Used by dll/so
612
generate_runtime_lib(${NEO_RELEASE_LIB_NAME} FALSE TRUE)
613
- generate_runtime_lib(${NEO_MOCKABLE_LIB_NAME} TRUE FALSE)
+ if(NOT SKIP_UNIT_TESTS)
+ set(NEO_MOCKABLE_LIB_NAME "igdrcl_lib_mockable") # Used by ULTS
614
+ generate_runtime_lib(${NEO_MOCKABLE_LIB_NAME} TRUE FALSE)
615
+ endif()
616
endif()
617
618
if(DEFAULT_TESTED_PLATFORM)
0 commit comments