mirror of
https://github.com/g-truc/glm.git
synced 2024-11-10 04:31:47 +00:00
19 lines
211 B
YAML
19 lines
211 B
YAML
language: cpp
|
|
|
|
os:
|
|
- linux
|
|
- osx
|
|
|
|
compiler:
|
|
- g++
|
|
- clang
|
|
|
|
before_script:
|
|
- mkdir ./build
|
|
- cd ./build
|
|
- cmake -DGLM_TEST_ENABLE=ON -DGLM_TEST_ENABLE_CXX_98=ON ..
|
|
|
|
script:
|
|
- cmake --build .
|
|
- ctest
|