You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
375 B
11 lines
375 B
3 years ago
|
set(obj "${RunCMake_TEST_BINARY_DIR}/UnityBuildPCH.dir/Debug/UnityBuildPCH.obj")
|
||
|
if(NOT EXISTS "${obj}")
|
||
|
set(RunCMake_TEST_FAILED "Expected object file does not exist:\n ${obj}")
|
||
|
return()
|
||
|
endif()
|
||
|
set(lib "${RunCMake_TEST_BINARY_DIR}/Debug/UnityBuildPCH.lib")
|
||
|
if(EXISTS "${lib}")
|
||
|
set(RunCMake_TEST_FAILED "Unexpected library file exists:\n ${lib}")
|
||
|
return()
|
||
|
endif()
|