mirror of
https://github.com/g-truc/glm.git
synced 2024-11-10 04:31:47 +00:00
35 lines
992 B
YAML
35 lines
992 B
YAML
clone_folder: c:\dev\glm-cmake
|
|
|
|
os:
|
|
- Visual Studio 2013
|
|
|
|
platform:
|
|
- x86
|
|
- x86_64
|
|
|
|
build_script:
|
|
- md build_pure_11
|
|
- cd build_pure_11
|
|
- cmake -DCMAKE_CXX_COMPILER=$COMPILER -DGLM_TEST_ENABLE=ON -DGLM_TEST_ENABLE_LANG_EXTENSIONS=ON -DGLM_TEST_FORCE_PURE=ON ..
|
|
- cmake --build . --config Debug
|
|
- cmake --build . --config Release
|
|
- cd ..
|
|
- md build_simd_11
|
|
- cd build_simd_11
|
|
- cmake -DCMAKE_CXX_COMPILER=$COMPILER -DGLM_TEST_ENABLE=ON -DGLM_TEST_ENABLE_LANG_EXTENSIONS=ON ..
|
|
- cmake --build . --config Debug
|
|
- cmake --build . --config Release
|
|
- cd ..
|
|
- md build_pure_98
|
|
- cd build_pure_98
|
|
- cmake -DCMAKE_CXX_COMPILER=$COMPILER -DGLM_TEST_ENABLE=ON -DGLM_TEST_ENABLE_CXX_98=ON -DGLM_TEST_FORCE_PURE=ON ..
|
|
- cmake --build . --config Debug
|
|
- cmake --build . --config Release
|
|
- cd ..
|
|
- md build_simd_98
|
|
- cd build_simd_98
|
|
- cmake -DCMAKE_CXX_COMPILER=$COMPILER -DGLM_TEST_ENABLE=ON -DGLM_TEST_ENABLE_CXX_98=ON ..
|
|
- cmake --build . --config Debug
|
|
- cmake --build . --config Release
|
|
- cd ..
|