diff options
author | Gregor Jasny <gjasny@googlemail.com> | 2019-09-01 08:42:39 (GMT) |
---|---|---|
committer | Gregor Jasny <gjasny@googlemail.com> | 2019-09-01 08:43:26 (GMT) |
commit | e29a92f5259def88bda0c292f591fda68c0e064e (patch) | |
tree | 62d06d7a6cabef30e7c94492271a78a92dfef512 /Tests/BundleTest | |
parent | 8720353d4adfa83295d136835f44dce0173efd79 (diff) | |
download | CMake-e29a92f5259def88bda0c292f591fda68c0e064e.zip CMake-e29a92f5259def88bda0c292f591fda68c0e064e.tar.gz CMake-e29a92f5259def88bda0c292f591fda68c0e064e.tar.bz2 |
Xcode: Make BundleTests compatible with Xcode 11
Diffstat (limited to 'Tests/BundleTest')
-rw-r--r-- | Tests/BundleTest/BundleSubDir/CMakeLists.txt | 6 | ||||
-rw-r--r-- | Tests/BundleTest/CMakeLists.txt | 6 |
2 files changed, 10 insertions, 2 deletions
diff --git a/Tests/BundleTest/BundleSubDir/CMakeLists.txt b/Tests/BundleTest/BundleSubDir/CMakeLists.txt index 2f7f2c4..5f91f20 100644 --- a/Tests/BundleTest/BundleSubDir/CMakeLists.txt +++ b/Tests/BundleTest/BundleSubDir/CMakeLists.txt @@ -35,7 +35,11 @@ install(TARGETS SecondBundle DESTINATION Applications) # installed into a location that uses this output name this will fail if the # bundle does not respect the name. Also the executable will not be found by # the test driver if this does not work. -set_target_properties(SecondBundle PROPERTIES OUTPUT_NAME SecondBundleExe) +set_target_properties(SecondBundle PROPERTIES + OUTPUT_NAME SecondBundleExe + XCODE_ATTRIBUTE_CODE_SIGN_IDENTITY "" + XCODE_ATTRIBUTE_CODE_SIGNING_REQUIRED "NO" + ) # Express one app bundle in terms of another's SOURCES to verify that # the generators do not expose the Info.plist of one to the other. diff --git a/Tests/BundleTest/CMakeLists.txt b/Tests/BundleTest/CMakeLists.txt index 853da35..1bedc70 100644 --- a/Tests/BundleTest/CMakeLists.txt +++ b/Tests/BundleTest/CMakeLists.txt @@ -56,7 +56,11 @@ install(TARGETS BundleTest DESTINATION Applications) # installed into a location that uses this output name this will fail if the # bundle does not respect the name. Also the executable will not be found by # the test driver if this does not work. -set_target_properties(BundleTest PROPERTIES OUTPUT_NAME BundleTestExe) +set_target_properties(BundleTest PROPERTIES + OUTPUT_NAME BundleTestExe + XCODE_ATTRIBUTE_CODE_SIGN_IDENTITY "" + XCODE_ATTRIBUTE_CODE_SIGNING_REQUIRED "NO" + ) # Test executable versioning if it is supported. if(NOT XCODE) |