summarylogtreecommitdiffstats
path: root/build-shared-libraries.patch
blob: 3812aec4634bbc2a3cf0ca40fcb148f057c8805d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
diff --unified --recursive --text --new-file edencommon-2024.04.29.00.orig/eden/common/os/CMakeLists.txt edencommon-2024.04.29.00/eden/common/os/CMakeLists.txt
--- edencommon-2024.04.29.00.orig/eden/common/os/CMakeLists.txt	2024-05-01 19:24:26.050226332 +0200
+++ edencommon-2024.04.29.00/eden/common/os/CMakeLists.txt	2024-05-01 19:24:59.130403502 +0200
@@ -6,7 +6,7 @@
 file(GLOB os_headers CONFIGURE_DEPENDS *.h)
 file(GLOB os_sources CONFIGURE_DEPENDS *.cpp)
 
-add_library(edencommon_os
+add_library(edencommon_os SHARED
   ${os_headers}
   ${os_sources}
 )
diff --unified --recursive --text --new-file edencommon-2024.04.29.00.orig/eden/common/telemetry/CMakeLists.txt edencommon-2024.04.29.00/eden/common/telemetry/CMakeLists.txt
--- edencommon-2024.04.29.00.orig/eden/common/telemetry/CMakeLists.txt	2024-05-01 19:24:26.050226332 +0200
+++ edencommon-2024.04.29.00/eden/common/telemetry/CMakeLists.txt	2024-05-01 19:24:59.130403502 +0200
@@ -8,6 +8,7 @@
 
 add_library(
   edencommon_telemetry
+  SHARED
   ${telemetry_headers}
   ${telemetry_sources})
 
diff --unified --recursive --text --new-file edencommon-2024.04.29.00.orig/eden/common/testharness/CMakeLists.txt edencommon-2024.04.29.00/eden/common/testharness/CMakeLists.txt
--- edencommon-2024.04.29.00.orig/eden/common/testharness/CMakeLists.txt	2024-05-01 19:24:26.050226332 +0200
+++ edencommon-2024.04.29.00/eden/common/testharness/CMakeLists.txt	2024-05-01 19:24:59.130403502 +0200
@@ -8,7 +8,7 @@
 
 add_library(
   edencommon_testharness
-  STATIC
+  SHARED
   ${testharness_headers}
   ${testharness_sources}
 )
diff --unified --recursive --text --new-file edencommon-2024.04.29.00.orig/eden/common/utils/CMakeLists.txt edencommon-2024.04.29.00/eden/common/utils/CMakeLists.txt
--- edencommon-2024.04.29.00.orig/eden/common/utils/CMakeLists.txt	2024-05-01 19:24:26.053559683 +0200
+++ edencommon-2024.04.29.00/eden/common/utils/CMakeLists.txt	2024-05-01 19:26:59.984382637 +0200
@@ -26,7 +26,7 @@
 
 add_library(
   edencommon_utils
-  STATIC
+  SHARED
     ${utils_headers}
     ${utils_sources})