Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
Merge pull request #9981 from OatmealDome/mvk-external-project
MoltenVK: Use an external project instead of a pre-compiled dylib
- Loading branch information
Showing
6 changed files
with
30 additions
and
5 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
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 |
|---|---|---|
| @@ -0,0 +1,18 @@ | ||
| include(ExternalProject) | ||
|
|
||
| ExternalProject_Add(MoltenVK | ||
| GIT_REPOSITORY https://github.com/KhronosGroup/MoltenVK.git | ||
| GIT_TAG v1.1.5 | ||
|
|
||
| CONFIGURE_COMMAND <SOURCE_DIR>/fetchDependencies --macos | ||
|
|
||
| BUILD_COMMAND make -C <SOURCE_DIR> macos | ||
| BUILD_IN_SOURCE ON | ||
| BUILD_BYPRODUCTS <SOURCE_DIR>/Package/Release/MoltenVK/dylib/macOS/libMoltenVK.dylib | ||
|
|
||
| INSTALL_COMMAND "" | ||
|
|
||
| LOG_CONFIGURE ON | ||
| LOG_BUILD ON | ||
| LOG_OUTPUT_ON_FAILURE ON | ||
| ) |
Binary file not shown.
This file was deleted.
Oops, something went wrong.
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
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