forked from cemu-project/Cemu
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
9 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -239,8 +239,15 @@ jobs: | |
- name: "Install system dependencies" | ||
run: | | ||
brew update | ||
brew search molten-vk@ | ||
brew install llvm@15 ninja nasm [email protected] automake libtool | ||
brew install llvm@15 ninja nasm automake libtool | ||
brew install cmake python3 ninja | ||
- name: "Build and install molten-vk" | ||
run: | | ||
git clone https://github.com/KhronosGroup/MoltenVK.git | ||
cd MoltenVK | ||
./fetchDependencies --macos | ||
xcodebuild build -quiet -project MoltenVKPackaging.xcodeproj -scheme "MoltenVK Package (macOS only)" -configuration "Debug" | ||
- name: "Setup cmake" | ||
uses: jwlawson/actions-setup-cmake@v2 | ||
|