forked from microsoft/vcpkg
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[shaderc] Fix for build (microsoft#4398)
* [shaderc] Fix for build * [glslang] Use 'd' debug suffix on all platforms * [shaderc][spirv-tools] Restore missing cmake options
- Loading branch information
1 parent
adcf874
commit 1ce7ee3
Showing
8 changed files
with
19 additions
and
124 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
Source: glslang | ||
Version: 2018-03-02 | ||
Version: 2018-03-02-1 | ||
Description: Khronos reference front-end for GLSL and ESSL, and sample SPIR-V generator |
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
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 |
---|---|---|
@@ -1,14 +1,8 @@ | ||
option(SUFFIX_D "Add d Suffix to lib" ${SUFFIX_D}) | ||
if(NOT SUFFIX_D) | ||
find_library(SPIRVTOOLSOPT spirv-tools-opt) | ||
find_library(SPIRVTOOLS spirv-tools) | ||
ELSE() | ||
find_library(SPIRVTOOLSOPT spirv-tools-opt) | ||
find_library(SPIRVTOOLS spirv-tools) | ||
ENDIF() | ||
find_library(SPIRVTOOLSOPT SPIRV-Tools-opt) | ||
find_library(SPIRVTOOLS SPIRV-Tools) | ||
|
||
add_library(SPIRV-Tools-opt STATIC IMPORTED GLOBAL) | ||
set_property(TARGET SPIRV-Tools-opt PROPERTY IMPORTED_LOCATION "${SPIRVTOOLSOPT}") | ||
|
||
add_library(SPIRV-Tools STATIC IMPORTED GLOBAL) | ||
set_property(TARGET SPIRV-Tools PROPERTY IMPORTED_LOCATION "${SPIRVTOOLS}") | ||
set_property(TARGET SPIRV-Tools PROPERTY IMPORTED_LOCATION "${SPIRVTOOLS}") |
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 |
---|---|---|
@@ -1,4 +1,4 @@ | ||
Source: shaderc | ||
Version: 12fb656ab20ea9aa06e7084a74e5ff832b7ce2da-1 | ||
Version: 12fb656ab20ea9aa06e7084a74e5ff832b7ce2da-2 | ||
Description: A collection of tools, libraries and tests for shader compilation. | ||
Build-Depends: glslang, spirv-tools |
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