summaryrefslogtreecommitdiffstats
path: root/CMakeScripts
diff options
context:
space:
mode:
authorMoritz Eberl <moritz@semiodesk.com>2016-04-16 14:44:37 +0000
committerMoritz Eberl <moritz@semiodesk.com>2016-04-16 14:44:37 +0000
commitbb779c6c9b9e84e6526b533df8c3bd441be82ae8 (patch)
treec3642470e2091629d6b728277f71f0c34d8a7b14 /CMakeScripts
parentAdded Sebastian Faubels CMake changes for the windows build. (diff)
downloadinkscape-bb779c6c9b9e84e6526b533df8c3bd441be82ae8.tar.gz
inkscape-bb779c6c9b9e84e6526b533df8c3bd441be82ae8.zip
Added an example plugin.
(bzr r14761.1.8)
Diffstat (limited to 'CMakeScripts')
-rw-r--r--CMakeScripts/DefineDependsandFlags.cmake3
1 files changed, 3 insertions, 0 deletions
diff --git a/CMakeScripts/DefineDependsandFlags.cmake b/CMakeScripts/DefineDependsandFlags.cmake
index c9367d2a1..4f02d258b 100644
--- a/CMakeScripts/DefineDependsandFlags.cmake
+++ b/CMakeScripts/DefineDependsandFlags.cmake
@@ -100,9 +100,12 @@ if(APPLE)
pkg_check_modules(x11 REQUIRED x11)
list(APPEND INKSCAPE_LIBS ${x11_LDFLAGS})
endif()
+elseif(WIN32)
+# X11 not available on windows
else()
pkg_check_modules(x11 REQUIRED x11)
list(APPEND INKSCAPE_LIBS ${x11_LDFLAGS})
+
endif()
if(WITH_GNOME_VFS)