Merge topic 'xcode73-xctest-location'

a364d251 Xcode: Fixup XCTest bundle location for Xcode 7.3
This commit is contained in:
Brad King 2016-03-28 09:25:43 -04:00 committed by CMake Topic Stage
commit 81cec38b99
1 changed files with 4 additions and 0 deletions

View File

@ -140,6 +140,10 @@ function(xctest_add_bundle target testee)
set_target_properties(${target} PROPERTIES
XCODE_ATTRIBUTE_BUNDLE_LOADER "$(TEST_HOST)"
XCODE_ATTRIBUTE_TEST_HOST "$<TARGET_FILE:${testee}>")
if(NOT XCODE_VERSION VERSION_LESS 7.3)
set_target_properties(${target} PROPERTIES
LIBRARY_OUTPUT_DIRECTORY "$<TARGET_FILE_DIR:${testee}>/../PlugIns")
endif()
else(XCODE)
target_link_libraries(${target}
PRIVATE -bundle_loader $<TARGET_FILE:${testee}>)