Files

37 lines
888 B
Diff
Raw Permalink Normal View History

2024-01-28 18:06:38 +08:00
--- tiledb/CMakeLists.txt.orig 2023-12-14 04:43:06.000000000 +0800
+++ tiledb/CMakeLists.txt 2024-01-28 17:30:15.000000000 +0800
@@ -659,6 +659,7 @@
2023-07-31 21:33:40 +08:00
ZLIB::ZLIB
2024-01-28 18:06:38 +08:00
${ZSTD_TARGET}
2023-07-31 21:33:40 +08:00
libmagic
+ MacportsLegacySupport
)
2024-01-28 18:06:38 +08:00
if(TILEDB_WEBP)
@@ -670,6 +671,13 @@
add_definitions(-DTILEDB_WEBP)
2023-07-31 21:33:40 +08:00
endif()
2023-08-02 03:47:49 +08:00
+if(CMAKE_CXX_COMPILER_ID STREQUAL "GNU")
2023-07-31 21:33:40 +08:00
+ target_link_libraries(TILEDB_CORE_OBJECTS_ILIB
+ INTERFACE
+ atomic
+ )
+endif()
+
2024-01-28 18:06:38 +08:00
if (NOT WIN32)
target_link_libraries(TILEDB_CORE_OBJECTS_ILIB
INTERFACE
2023-07-31 21:33:40 +08:00
--- test/CMakeLists.txt.orig 2023-04-26 09:28:54.000000000 +0800
+++ test/CMakeLists.txt 2023-05-22 15:10:49.000000000 +0800
@@ -295,6 +295,7 @@
TILEDB_CORE_OBJECTS_ILIB
Catch2::Catch2
tiledb_test_support_lib
2024-10-28 12:35:19 +02:00
configuration_definitions
2023-07-31 21:33:40 +08:00
+ MacportsLegacySupport
)
target_link_libraries(tiledb_unit PRIVATE $<BUILD_INTERFACE:common>)