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

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