summaryrefslogtreecommitdiff
path: root/appveyor.yml
diff options
context:
space:
mode:
authorAllen Winter <allen.winter@kdab.com>2021-11-06 09:11:07 -0400
committerAllen Winter <allen.winter@kdab.com>2021-11-06 09:11:07 -0400
commit3afc71f2b97a14af1c600c67e5bbe22e201bc4b6 (patch)
tree0042b1db87779d22e304f9634f5aed8cf6b716d2 /appveyor.yml
parent1c9494250467c047c80ad531c68a060923f9622a (diff)
downloadlibical-git-3afc71f2b97a14af1c600c67e5bbe22e201bc4b6.tar.gz
appveyor.yml - Ninja build on Windows isn't working.
temporarily switch to using NMake Makefiles on Windows
Diffstat (limited to 'appveyor.yml')
-rw-r--r--appveyor.yml4
1 files changed, 2 insertions, 2 deletions
diff --git a/appveyor.yml b/appveyor.yml
index 83768bf1..1933690d 100644
--- a/appveyor.yml
+++ b/appveyor.yml
@@ -45,12 +45,12 @@ environment:
XML_CATALOG_FILES: /usr/local/etc/xml/catalog
install:
- - 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
+ - sh: if [ "`uname -s`" = "Darwin" ]; then export XML_CATALOG_FILES=/usr/local/etc/xml/catalog; brew install ninja gtk-doc; else sudo apt-get -y install gtk-doc-tools; fi
build_script:
- mkdir build
- cd build
- - cmd: cmake -G Ninja -DCMAKE_BUILD_TYPE=%CONFIGURATION% -DENABLE_GTK_DOC=OFF -DICAL_GLIB=False ..
+ - cmd: cmake -G "NMake Makefiles" -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