16
0
mirror of https://github.com/MaSzyna-EU07/maszyna.git synced 2026-09-02 02:39:19 +02:00

merge local branch 'mover_in_c++'

This commit is contained in:
tmj-fstate
2018-10-12 17:45:01 +02:00
parent 6f6ffddd7a
commit e801953c1d
1626 changed files with 380156 additions and 5 deletions

36
ref/glm/.appveyor.yml Normal file
View File

@@ -0,0 +1,36 @@
clone_folder: c:\dev\glm-cmake
os:
- Visual Studio 2013
- Visual Studio 2017
platform:
- x86
- x86_64
build_script:
- cmake --version
- 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 -E time cmake --build . --config Debug
- cmake -E time 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 -E time cmake --build . --config Debug
- cmake -E time 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 -E time cmake --build . --config Debug
- cmake -E time 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 -E time cmake --build . --config Debug
- cmake -E time cmake --build . --config Release
- cd ..