1
0
This repository has been archived on 2025-07-27. You can view files and clone it, but cannot push or open issues or pull requests.
Files
siadrive/3rd-party/SRombauts-SQLiteCpp-f69986a/appveyor.yml
Scott E. Graves 588e7badf8 Added sqlite
2017-02-19 13:02:32 -06:00

27 lines
794 B
YAML

# Copyright (c) 2012-2016 Sebastien Rombauts (sebastien.rombauts@gmail.com)
# build format
version: "{build}"
# scripts that run after cloning repository
install:
- git submodule update --init googletest
# configurations to add to build matrix
# TODO: VS2010->VS2015 and Win32/Win64 (see https://github.com/google/googletest/blob/master/appveyor.yml)
# TODO: MinGW Makefiles and MSYS Makefiles
configuration:
- Debug
# - Release # CMake can only build the default configuration on Visual Studio
# scripts to run before build
before_build:
- mkdir build
- cd build
- cmake -DSQLITECPP_BUILD_EXAMPLES=ON -DSQLITECPP_BUILD_TESTS=ON -DSQLITECPP_RUN_CPPCHECK=OFF ..
# build examples, and run tests (ie make & make test)
build_script:
- cmake --build .
- ctest --output-on-failure