summaryrefslogtreecommitdiffstats
path: root/CMakeScripts/DefineDependsandFlags.cmake
diff options
context:
space:
mode:
authorMartin Owens <doctormo@gmail.com>2017-07-06 04:20:19 +0000
committerMartin Owens <doctormo@gmail.com>2017-07-06 04:20:19 +0000
commitb264288033bb76311556258914f1ddc043c922e7 (patch)
tree0c802ea7649b7651ed02b96b60c5bb2e1cc0dbfe /CMakeScripts/DefineDependsandFlags.cmake
parentUpgrade dropper with fixed for each of the modes (diff)
downloadinkscape-b264288033bb76311556258914f1ddc043c922e7.tar.gz
inkscape-b264288033bb76311556258914f1ddc043c922e7.zip
Add new libsoup based http access with caching and async
Diffstat (limited to 'CMakeScripts/DefineDependsandFlags.cmake')
-rw-r--r--CMakeScripts/DefineDependsandFlags.cmake5
1 files changed, 4 insertions, 1 deletions
diff --git a/CMakeScripts/DefineDependsandFlags.cmake b/CMakeScripts/DefineDependsandFlags.cmake
index 0a8782f27..79944309a 100644
--- a/CMakeScripts/DefineDependsandFlags.cmake
+++ b/CMakeScripts/DefineDependsandFlags.cmake
@@ -46,17 +46,20 @@ pkg_check_modules(INKSCAPE_DEP REQUIRED
pangoft2
fontconfig
gsl
- gmodule-2.0)
+ gmodule-2.0
+ libsoup-2.4)
list(APPEND INKSCAPE_LIBS ${INKSCAPE_DEP_LDFLAGS})
list(APPEND INKSCAPE_INCS_SYS ${INKSCAPE_DEP_INCLUDE_DIRS})
list(APPEND INKSCAPE_LIBS ${INKSCAPE_DEP_LIBRARIES})
+
add_definitions(${INKSCAPE_DEP_CFLAGS_OTHER})
if(APPLE AND DEFINED ENV{CMAKE_PREFIX_PATH})
list(APPEND INKSCAPE_LIBS "-L$ENV{CMAKE_PREFIX_PATH}/lib")
endif()
+
if(WITH_GNOME_VFS)
find_package(GnomeVFS2)
if(GNOMEVFS2_FOUND)