summaryrefslogtreecommitdiff
path: root/appveyor.yml
diff options
context:
space:
mode:
authorAllen Winter <allen.winter@kdab.com>2021-11-06 08:23:53 -0400
committerAllen Winter <allen.winter@kdab.com>2021-11-06 08:25:20 -0400
commit165141e93d93b32833a7240af665771f617fcf71 (patch)
tree748dfe457c9ea20114a4a1695da40d6990402820 /appveyor.yml
parent00066d648b7423314676ba5e89864602ef0cc4ae (diff)
downloadlibical-git-165141e93d93b32833a7240af665771f617fcf71.tar.gz
appveyor.yml - deal with gtk-doc
disable on Windows install gtk-doc packages on Mac and Ubuntu
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 109f97b8..94c75706 100644
--- a/appveyor.yml
+++ b/appveyor.yml
@@ -42,12 +42,12 @@ configuration:
- Debug
install:
- - sh: if [ "`uname -s`" = "Darwin" ]; then brew install ninja; fi
+ - sh: if [ "`uname -s`" = "Darwin" ]; then brew install ninja gtk-doc; else sudo apt-get install gtk-doc; fi
build_script:
- mkdir build
- cd build
- - cmd: cmake -G Ninja -DCMAKE_BUILD_TYPE=%CONFIGURATION% ..
+ - cmd: cmake -G Ninja -DCMAKE_BUILD_TYPE=%CONFIGURATION% -DENABLE_GTK_DOC=OFF ..
- sh: cmake -G Ninja -DCMAKE_BUILD_TYPE=$CONFIGURATION ..
- cmake --build .
- cmd: cmake --build . --target install