Skip to content

Commit

Permalink
khronos.org/glslang
Browse files Browse the repository at this point in the history
  • Loading branch information
and-ri authored and jhheider committed Jul 29, 2023
1 parent f586deb commit a9f7ee8
Show file tree
Hide file tree
Showing 3 changed files with 42 additions and 0 deletions.
34 changes: 34 additions & 0 deletions projects/khronos.org/glslang/package.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
distributable:
url: https://github.com/KhronosGroup/glslang/archive/{{version}}.tar.gz
strip-components: 1
versions:
github: KhronosGroup/glslang
build:
dependencies:
tea.xyz/gx/cc: c99
gnu.org/make: '*'
cmake.org: '*'
python.org: ^3.11
script:
- cmake -S . -B build $ARGS
- cmake --build build
- cmake --install build
env:
ARGS:
- -DBUILD_EXTERNAL=OFF
- -DENABLE_CTEST=OFF
- -DCMAKE_INSTALL_PREFIX={{prefix}}
- -DCMAKE_INSTALL_LIBDIR={{prefix}}/lib
- -DCMAKE_BUILD_TYPE=Release
- -DCMAKE_FIND_FRAMEWORK=LAST
- -DCMAKE_VERBOSE_MAKEFILE=ON
- -Wno-dev
- -DBUILD_TESTING=OFF
provides:
- bin/glslang
- bin/glslangValidator
- bin/spirv-remap
test:
script:
- glslang --version | grep {{version}}
- glslangValidator -i test.vert test.frag
4 changes: 4 additions & 0 deletions projects/khronos.org/glslang/test.frag
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
#version 110
void main() {
gl_FragColor = vec4(1.0, 1.0, 1.0, 1.0);
}
4 changes: 4 additions & 0 deletions projects/khronos.org/glslang/test.vert
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
#version 110
void main() {
gl_Position = gl_ModelViewProjectionMatrix * gl_Vertex;
}

0 comments on commit a9f7ee8

Please sign in to comment.