diff options
author | Yauheni Khnykin <yauheni.khnykin@here.com> | 2020-11-29 16:54:56 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2020-11-30 18:02:51 (GMT) |
commit | 31d3e64080c950b1f201b0fb9040937a8af1cda9 (patch) | |
tree | 37ddc0af63e72874fddb67d16932384be77243b5 /Tests/RunCMake/XcodeProject/XcodeObjectLibsInTwoProjects.cmake | |
parent | f85f86415b1ef628ef5ffc851733927be4098378 (diff) | |
download | CMake-31d3e64080c950b1f201b0fb9040937a8af1cda9.zip CMake-31d3e64080c950b1f201b0fb9040937a8af1cda9.tar.gz CMake-31d3e64080c950b1f201b0fb9040937a8af1cda9.tar.bz2 |
Tests: Add Xcode cases fixed by switch to the "new build system"
Support of 'new build system' in Xcode fixes indirectly few issues
which were caused by workaround with `XCODE_DEPEND_HELPER.cmake`
autogenerated script.
This patch adds test which is originated from issue #20260 and
reproduces this issue when 'new build system' is disabled.
Fixes: #20260
Diffstat (limited to 'Tests/RunCMake/XcodeProject/XcodeObjectLibsInTwoProjects.cmake')
-rw-r--r-- | Tests/RunCMake/XcodeProject/XcodeObjectLibsInTwoProjects.cmake | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/Tests/RunCMake/XcodeProject/XcodeObjectLibsInTwoProjects.cmake b/Tests/RunCMake/XcodeProject/XcodeObjectLibsInTwoProjects.cmake new file mode 100644 index 0000000..3ca24af --- /dev/null +++ b/Tests/RunCMake/XcodeProject/XcodeObjectLibsInTwoProjects.cmake @@ -0,0 +1,5 @@ +cmake_minimum_required (VERSION 3.19) + +project (test_xcode_fail NONE) + +add_subdirectory(subproject_two_object_libs) |