summaryrefslogtreecommitdiffstats
path: root/Tests/RunCMake/XcodeProject/XcodeWorkspace.cmake
Commit message (Collapse)AuthorAgeFilesLines
* cmake --build: Fix building multiple targets in Xcode workspaceStepanov Igor2025-06-141-0/+2
| | | | | | | | | | | Extend commit 844d79916a (cmake --build: Add support for driving Xcode workspaces, 2025-06-02) to support multiple `--target` arguments. `xcodebuild -scheme` cannot be repeated in a single call, so call it multiple times instead. Issue: #26958 Co-Authored-By: Craig Scott <craig.scott@crascit.com>
* cmake --build: Add support for driving Xcode workspacesStepanov Igor2025-06-101-0/+8
External tools may create a `.xcworkspace` directory next to the `.xcodeproj` directory that CMake generates. If a workspace exists, drive the build through it instead. Closes: #26958 Co-authored-by: Brad King <brad.king@kitware.com>