You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and dots ('.'), can be up to 35 characters long. Letters must be lowercase.
41 lines
1.1 KiB
41 lines
1.1 KiB
clone_folder: c:\dev\glm-cmake |
|
|
|
os: |
|
- Visual Studio 2013 |
|
- Visual Studio 2015 |
|
|
|
matrix: |
|
- vc_arch: amd64 |
|
target_arch: x86_64 |
|
- vc_arch: amd64_x86 |
|
target_arch: x86 |
|
|
|
build_script: |
|
- md build_pure_11 |
|
- cd build_pure_11 |
|
- cmake -DCMAKE_CXX_COMPILER=$COMPILER -DGLM_TEST_ENABLE=ON -DGLM_TEST_ENABLE_CXX_11=ON -DGLM_TEST_FORCE_PURE=ON .. |
|
- cmake --build . --config Debug |
|
- cmake --build . --config Release |
|
- ctest |
|
- cd .. |
|
- md build_simd_11 |
|
- cd build_simd_11 |
|
- cmake -DCMAKE_CXX_COMPILER=$COMPILER -DGLM_TEST_ENABLE=ON -DGLM_TEST_ENABLE_CXX_11=ON .. |
|
- cmake --build . --config Debug |
|
- cmake --build . --config Release |
|
- ctest |
|
- 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 |
|
- ctest |
|
- 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 |
|
- ctest |
|
- cd ..
|
|
|