mirror of
https://github.com/rbock/sqlpp11.git
synced 2024-11-16 04:47:18 +08:00
32 lines
547 B
YAML
32 lines
547 B
YAML
os:
|
|
- Visual Studio 2015
|
|
- Visual Studio 2017
|
|
|
|
platform:
|
|
- x64
|
|
|
|
configuration:
|
|
#- Debug
|
|
- Release
|
|
|
|
matrix:
|
|
fast_finish: true
|
|
|
|
build_script:
|
|
- CD
|
|
- cd ..
|
|
- CD
|
|
- git clone https://github.com/HowardHinnant/date
|
|
- cd date
|
|
- git checkout tags/v2.4
|
|
- cd ..
|
|
- cd sqlpp11
|
|
- CD
|
|
- echo %configuration%
|
|
- mkdir build
|
|
- cd build
|
|
- cmake --version
|
|
- cmake .. -DCMAKE_CXX_FLAGS="/EHsc /wd4503" -DCMAKE_PREFIX_PATH="C:\projects\date"
|
|
- cmake --build . --config %configuration%
|
|
- ctest . --build-config %configuration%
|