summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorPatrick Storz <eduard.braun2@gmx.de>2019-04-05 23:19:09 +0000
committerPatrick Storz <eduard.braun2@gmx.de>2019-04-05 23:19:09 +0000
commit2a3b224cecda83e1b10b9ab988e8bcc8d9bfb15a (patch)
tree7c70ca92e07cc8f7e63db51b029b84193f551c1b /src
parentMore cleanup of document.h. (diff)
downloadinkscape-2a3b224cecda83e1b10b9ab988e8bcc8d9bfb15a.tar.gz
inkscape-2a3b224cecda83e1b10b9ab988e8bcc8d9bfb15a.zip
CMake: Fix module FindDoubleConversion.cmake
The module did not properly handle required libraries that were not found. Ensure proper behavior by sticking to CMake-recommended standard variable names.
Diffstat (limited to 'src')
-rw-r--r--src/2geom/CMakeLists.txt4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/2geom/CMakeLists.txt b/src/2geom/CMakeLists.txt
index 988fd1b54..3c18c4ffd 100644
--- a/src/2geom/CMakeLists.txt
+++ b/src/2geom/CMakeLists.txt
@@ -131,5 +131,5 @@ set(2geom_SRC
# make lib for 2geom_LIB
add_inkscape_lib(2geom_LIB "${2geom_SRC}")
-target_include_directories(2geom_LIB PRIVATE ${DOUBLE_CONVERSION_INCLUDE_DIRS})
-target_link_libraries(2geom_LIB PRIVATE ${DOUBLE_CONVERSION_LIBRARIES})
+target_include_directories(2geom_LIB PRIVATE ${DoubleConversion_INCLUDE_DIRS})
+target_link_libraries(2geom_LIB PRIVATE ${DoubleConversion_LIBRARIES})