Blame SOURCES/0001-Link-executables-against-shared-libs.patch

56e403
From eae8b33bc3a828b74422fb3bd41d52ba6f0b0048 Mon Sep 17 00:00:00 2001
56e403
From: =?UTF-8?q?Ralf=20Cors=C3=A9pius?= <corsepiu@fedoraproject.org>
56e403
Date: Wed, 27 Apr 2016 08:05:53 +0200
56e403
Subject: [PATCH 1/2] Link executables against shared libs.
56e403
56e403
---
56e403
 CMakeLists.txt | 12 ++++++------
56e403
 1 file changed, 6 insertions(+), 6 deletions(-)
56e403
56e403
diff --git a/CMakeLists.txt b/CMakeLists.txt
56e403
index 59dff41..df26bd0 100644
56e403
--- a/CMakeLists.txt
56e403
+++ b/CMakeLists.txt
56e403
@@ -477,22 +477,22 @@ set(qvoronoi_SOURCES    src/qvoronoi/qvoronoi.c)
56e403
 set(qhalf_SOURCES       src/qhalf/qhalf.c)
56e403
 
56e403
 add_executable(qhull ${qhull_SOURCES})
56e403
-target_link_libraries(qhull ${qhull_STATICR})
56e403
+target_link_libraries(qhull ${qhull_SHAREDR})
56e403
 
56e403
 add_executable(rbox ${rbox_SOURCES})
56e403
-target_link_libraries(rbox ${qhull_STATIC})
56e403
+target_link_libraries(rbox ${qhull_SHARED})
56e403
 
56e403
 add_executable(qconvex ${qconvex_SOURCES})
56e403
-target_link_libraries(qconvex ${qhull_STATIC})
56e403
+target_link_libraries(qconvex ${qhull_SHARED})
56e403
 
56e403
 add_executable(qdelaunay ${qdelaunay_SOURCES})
56e403
-target_link_libraries(qdelaunay ${qhull_STATIC})
56e403
+target_link_libraries(qdelaunay ${qhull_SHARED})
56e403
 
56e403
 add_executable(qvoronoi ${qvoronoi_SOURCES})
56e403
-target_link_libraries(qvoronoi ${qhull_STATIC})
56e403
+target_link_libraries(qvoronoi ${qhull_SHARED})
56e403
 
56e403
 add_executable(qhalf ${qhalf_SOURCES})
56e403
-target_link_libraries(qhalf ${qhull_STATIC})
56e403
+target_link_libraries(qhalf ${qhull_SHARED})
56e403
 
56e403
 # ---------------------------------------
56e403
 # Define options for linking to qhull_SHAREDR or qhull_SHARED
56e403
-- 
56e403
2.5.5
56e403