Enable web services for Travis/Appveyor

This commit is contained in:
James 2017-07-18 13:24:53 +10:00 committed by j-selby
parent 7ac1c7d540
commit 36b3bec266
2 changed files with 3 additions and 3 deletions

View File

@ -49,7 +49,7 @@ if [ "$TRAVIS_OS_NAME" = "linux" -o -z "$TRAVIS_OS_NAME" ]; then
export PKG_CONFIG_PATH=$HOME/.local/lib/pkgconfig:$PKG_CONFIG_PATH
mkdir build && cd build
cmake ..
cmake .. -DENABLE_WEB_SERVICE=1
make -j4
ctest -VV -C Release
@ -60,7 +60,7 @@ elif [ "$TRAVIS_OS_NAME" = "osx" ]; then
export Qt5_DIR=$(brew --prefix)/opt/qt5
mkdir build && cd build
cmake .. -GXcode
cmake .. -GXcode -DENABLE_WEB_SERVICE=1
xcodebuild -configuration Release
ctest -VV -C Release

View File

@ -22,7 +22,7 @@ install:
before_build:
- mkdir build
- cd build
- cmake -G "Visual Studio 15 2017 Win64" -DCITRA_USE_BUNDLED_QT=1 -DCITRA_USE_BUNDLED_SDL2=1 -DCMAKE_USE_OPENSSL=0 ..
- cmake -G "Visual Studio 15 2017 Win64" -DCITRA_USE_BUNDLED_QT=1 -DCITRA_USE_BUNDLED_SDL2=1 -DCMAKE_USE_OPENSSL=0 -DENABLE_WEB_SERVICE=1 ..
- cd ..
build: