[C] Improved cmake files consistency

This commit is contained in:
seleznevae
2019-05-19 19:09:11 +03:00
parent e77e262a48
commit f223a12fed
7 changed files with 14 additions and 13 deletions

View File

@@ -27,7 +27,7 @@ main_task:
# Test build without optimizations and with asan
- mkdir -p build
- cd build
- cmake .. -DFORT_BUILD_TYPE=asan
- cmake .. -DFORT_BUILD_TYPE=asan -DCMAKE_BUILD_TYPE=Debug
- cmake --build . --target all
- ls
- ctest -VV
@@ -37,7 +37,7 @@ main_task:
# Test build without optimizations and with ubsan
- mkdir -p build
- cd build
- cmake .. -DFORT_BUILD_TYPE=ubsan
- cmake .. -DFORT_BUILD_TYPE=ubsan -DCMAKE_BUILD_TYPE=Debug
- cmake --build . --target all
- ls
- ctest -VV
@@ -47,7 +47,7 @@ main_task:
# Test without WCHAR support
- mkdir -p build
- cd build
- cmake .. -DFORT_ENABLE_WCHAR=OFF
- cmake .. -DFORT_ENABLE_WCHAR=OFF -DCMAKE_BUILD_TYPE=Debug
- cmake --build . --target all
- ls
- ctest -VV