[Gdcm-hackers] gdcm-git:Grassroots DICOM branch release updated. ad090de94eb2ace7204a1bc1b7e4c5aae9
Cross-platform DICOM implementation
Brought to you by:
malat
|
From: Mathieu M. <ma...@us...> - 2022-09-26 06:29:35
|
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "Grassroots DICOM".
The branch, release has been updated
via ad090de94eb2ace7204a1bc1b7e4c5aae99aef59 (commit)
from a5b457ce90100e2832f75fd7c391263b3aa80431 (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
https://sourceforge.net/p/gdcm/gdcm/ci/ad090de94eb2ace7204a1bc1b7e4c5aae99aef59/
commit ad090de94eb2ace7204a1bc1b7e4c5aae99aef59
Author: Mathieu Malaterre <mat...@gm...>
Date: Mon Sep 26 08:29:21 2022 +0200
Proper iconv fix
diff --git a/Source/MediaStorageAndFileFormat/CMakeLists.txt b/Source/MediaStorageAndFileFormat/CMakeLists.txt
index 7d1ca0550..51a3ff629 100644
--- a/Source/MediaStorageAndFileFormat/CMakeLists.txt
+++ b/Source/MediaStorageAndFileFormat/CMakeLists.txt
@@ -228,8 +228,9 @@ endif()
if(GDCM_USE_SYSTEM_JSON)
target_link_libraries(gdcmMSFF LINK_PRIVATE ${JSON_LIBRARIES})
endif()
-if(APPLE)
- target_link_libraries(gdcmMSFF iconv)
+if(UNIX)
+ find_package(Iconv)
+ target_link_libraries(gdcmMSFF LINK_PRIVATE ${Iconv_LIBRARIES})
endif()
# handling of static lib within shared is a mess:
#target_link_libraries(gdcmMSFF gdcmrle)
-----------------------------------------------------------------------
Summary of changes:
Source/MediaStorageAndFileFormat/CMakeLists.txt | 5 +++--
1 file changed, 3 insertions(+), 2 deletions(-)
hooks/post-receive
--
Grassroots DICOM
|