Added sqlite
This commit is contained in:
26
3rd-party/SRombauts-SQLiteCpp-f69986a/appveyor.yml
vendored
Normal file
26
3rd-party/SRombauts-SQLiteCpp-f69986a/appveyor.yml
vendored
Normal file
@@ -0,0 +1,26 @@
|
||||
# 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
|
Reference in New Issue
Block a user