mirror of
https://github.com/ivabus/pantry
synced 2024-11-22 08:25:07 +03:00
parent
b57bb025e8
commit
1026fcda6a
1 changed files with 30 additions and 33 deletions
|
@ -1,5 +1,7 @@
|
|||
distributable:
|
||||
url: https://github.com/g-truc/glm/releases/download/{{version}}/glm-{{version}}.zip
|
||||
- url: https://github.com/g-truc/glm/releases/download/{{version.tag}}/glm-{{version.tag}}.zip
|
||||
# v1.0.0 added -light
|
||||
- url: https://github.com/g-truc/glm/releases/download/{{version.tag}}/glm-{{version.tag}}-light.zip
|
||||
|
||||
versions:
|
||||
github: g-truc/glm
|
||||
|
@ -7,24 +9,21 @@ versions:
|
|||
build:
|
||||
dependencies:
|
||||
cmake.org: ^3
|
||||
working-directory: glm/build
|
||||
working-directory: glm
|
||||
script:
|
||||
- cmake .. $ARGS
|
||||
- make --jobs {{ hw.concurrency }}
|
||||
- run: |
|
||||
mkdir -p {{prefix}}/include {{prefix}}/lib/pkgconfig
|
||||
rm glm/CMakeLists.txt
|
||||
mv glm {{prefix}}/include
|
||||
mv cmake/glm {{prefix}}/lib/cmake
|
||||
- cmake -S . -B build $ARGS
|
||||
- cmake --build build -- all
|
||||
|
||||
cp $SRCROOT/props/glm.pc {{prefix}}/lib/pkgconfig
|
||||
echo 'Version: {{version}}' >> {{prefix}}/lib/pkgconfig/glm.pc
|
||||
working-directory: ..
|
||||
- mkdir -p {{prefix}}/include {{prefix}}/lib/pkgconfig
|
||||
- cp -a detail ext gtc gtx simd *.hpp '{{prefix}}/include'
|
||||
- run: ln -s . glm
|
||||
working-directory: '{{prefix}}/include'
|
||||
env:
|
||||
ARGS:
|
||||
- -DCMAKE_INSTALL_PREFIX={{prefix}}
|
||||
- -DCMAKE_BUILD_TYPE=Release
|
||||
- -DCMAKE_VERBOSE_MAKEFILE=ON
|
||||
- -DBUILD_SHARED_LIBS=ON
|
||||
CXXFLAGS:
|
||||
- -std=c++17
|
||||
# or fails to build with clang 15
|
||||
|
@ -38,12 +37,12 @@ build:
|
|||
CXXFLAGS:
|
||||
- -fPIC
|
||||
|
||||
# runtime:
|
||||
# env:
|
||||
# CPATH: /usr/include/c++
|
||||
|
||||
test:
|
||||
fixture: |
|
||||
script:
|
||||
- run: c++ $FIXTURE
|
||||
fixture:
|
||||
extname: cpp
|
||||
content: |
|
||||
#include <glm/vec2.hpp>// glm::vec2
|
||||
int main() {
|
||||
std::size_t const VertexCount = 4;
|
||||
|
@ -56,7 +55,5 @@ test:
|
|||
};
|
||||
return 0;
|
||||
}
|
||||
script: |
|
||||
mv $FIXTURE b.cpp
|
||||
c++ b.cpp
|
||||
./a.out
|
||||
|
||||
- ./a.out
|
||||
|
|
Loading…
Reference in a new issue