summaryrefslogtreecommitdiff
path: root/appveyor.yml
diff options
context:
space:
mode:
authorAllen Winter <allen.winter@kdab.com>2021-11-06 08:51:50 -0400
committerAllen Winter <allen.winter@kdab.com>2021-11-06 08:51:50 -0400
commit1c9494250467c047c80ad531c68a060923f9622a (patch)
treef85be28a802df4dacea71dafa32556ac2a90421b /appveyor.yml
parent165141e93d93b32833a7240af665771f617fcf71 (diff)
downloadlibical-git-1c9494250467c047c80ad531c68a060923f9622a.tar.gz
appveyor.yml - more fixes
Diffstat (limited to 'appveyor.yml')
-rw-r--r--appveyor.yml9
1 files changed, 6 insertions, 3 deletions
diff --git a/appveyor.yml b/appveyor.yml
index 94c75706..83768bf1 100644
--- a/appveyor.yml
+++ b/appveyor.yml
@@ -19,7 +19,7 @@ skip_tags: false
# Build worker image
image:
- - Visual Studio 2013
+ #- Visual Studio 2013 #disable since Ninja is not available
- Visual Studio 2019
- macos
- Ubuntu
@@ -41,13 +41,16 @@ configuration:
- Release
- Debug
+environment:
+ XML_CATALOG_FILES: /usr/local/etc/xml/catalog
+
install:
- - sh: if [ "`uname -s`" = "Darwin" ]; then brew install ninja gtk-doc; else sudo apt-get install gtk-doc; fi
+ - sh: if [ "`uname -s`" = "Darwin" ]; then export XML_CATALOG_FILES=/usr/local/etc/xml/catalog; brew install ninja gtk-doc; else sudo apt-get install gtk-doc-tools; fi
build_script:
- mkdir build
- cd build
- - cmd: cmake -G Ninja -DCMAKE_BUILD_TYPE=%CONFIGURATION% -DENABLE_GTK_DOC=OFF ..
+ - cmd: cmake -G Ninja -DCMAKE_BUILD_TYPE=%CONFIGURATION% -DENABLE_GTK_DOC=OFF -DICAL_GLIB=False ..
- sh: cmake -G Ninja -DCMAKE_BUILD_TYPE=$CONFIGURATION ..
- cmake --build .
- cmd: cmake --build . --target install