diff --git a/BUILDING.md b/BUILDING.md index 9e4335df6..59671aadb 100644 --- a/BUILDING.md +++ b/BUILDING.md @@ -155,7 +155,16 @@ cd build/macos cmake -G "Xcode" ../.. ``` -Finally, open the build/macos/OPENXR.xcodeproj in Xcode to build the samples. +Finally, open the `build/macos/OPENXR.xcodeproj` in Xcode to build the samples. + +If you want to build on the command line, you can run the following command to +check available targets and built `ALL_BUILD` target as example: + +```shell +# In build/macos directory +xcodebuild -list -project OPENXR.xcodeproj/ +xcodebuild -scheme ALL_BUILD build +``` ### Android diff --git a/changes/sdk/pr.501.gh.OpenXR-SDK-Source.md b/changes/sdk/pr.501.gh.OpenXR-SDK-Source.md new file mode 100644 index 000000000..c0954c36f --- /dev/null +++ b/changes/sdk/pr.501.gh.OpenXR-SDK-Source.md @@ -0,0 +1,2 @@ +- ci: Add GitHub Action for macOS building +- doc: Add command to build OpenXR targets on macOS