Mercurial > hg > orthanc
changeset 5103:899f303613fb
merge from 1.11.2 branch
author | Alain Mazy <am@osimis.io> |
---|---|
date | Thu, 27 Oct 2022 12:53:47 +0200 |
parents | fcb2ed6c88ff (current diff) 3b1ae7a81d9b (diff) |
children | ea3224848d05 |
files | TODO |
diffstat | 3 files changed, 9 insertions(+), 7 deletions(-) [+] |
line wrap: on
line diff
--- a/OrthancFramework/Sources/Enumerations.h Wed Oct 19 21:15:41 2022 +0200 +++ b/OrthancFramework/Sources/Enumerations.h Thu Oct 27 12:53:47 2022 +0200 @@ -906,7 +906,7 @@ ORTHANC_PUBLIC const char* GetResourceTypeText(ResourceType type, bool isPlural, - bool isLowerCase); + bool isUpperCase); ORTHANC_PUBLIC void GetAllDicomTransferSyntaxes(std::set<DicomTransferSyntax>& target);
--- a/OrthancServer/CMakeLists.txt Wed Oct 19 21:15:41 2022 +0200 +++ b/OrthancServer/CMakeLists.txt Thu Oct 27 12:53:47 2022 +0200 @@ -591,6 +591,8 @@ -DCMAKE_C_FLAGS=${CMAKE_C_FLAGS} -DCMAKE_OSX_DEPLOYMENT_TARGET=${CMAKE_OSX_DEPLOYMENT_TARGET} -DCMAKE_OSX_ARCHITECTURES=${CMAKE_OSX_ARCHITECTURES} + + INSTALL_COMMAND "" ) if (${CMAKE_SYSTEM_NAME} STREQUAL "Windows") @@ -607,8 +609,8 @@ list(GET CMAKE_FIND_LIBRARY_PREFIXES 0 Prefix) list(GET CMAKE_FIND_LIBRARY_SUFFIXES 0 Suffix) install(FILES - ${CMAKE_CURRENT_BINARY_DIR}/${Prefix}ConnectivityChecks${Suffix} - ${CMAKE_CURRENT_BINARY_DIR}/${Prefix}ConnectivityChecks${Suffix}.${ORTHANC_VERSION} + ${CMAKE_CURRENT_BINARY_DIR}/ConnectivityChecks-build/${Prefix}ConnectivityChecks${Suffix} + ${CMAKE_CURRENT_BINARY_DIR}/ConnectivityChecks-build/${Prefix}ConnectivityChecks${Suffix}.${ORTHANC_VERSION} DESTINATION "share/orthanc/plugins") endif() endif() @@ -662,6 +664,8 @@ -DCMAKE_C_FLAGS=${CMAKE_C_FLAGS} -DCMAKE_OSX_DEPLOYMENT_TARGET=${CMAKE_OSX_DEPLOYMENT_TARGET} -DCMAKE_OSX_ARCHITECTURES=${CMAKE_OSX_ARCHITECTURES} + + INSTALL_COMMAND "" ) if (${CMAKE_SYSTEM_NAME} STREQUAL "Windows") @@ -678,8 +682,8 @@ list(GET CMAKE_FIND_LIBRARY_PREFIXES 0 Prefix) list(GET CMAKE_FIND_LIBRARY_SUFFIXES 0 Suffix) install(FILES - ${CMAKE_CURRENT_BINARY_DIR}/${Prefix}DelayedDeletion${Suffix} - ${CMAKE_CURRENT_BINARY_DIR}/${Prefix}DelayedDeletion${Suffix}.${ORTHANC_VERSION} + ${CMAKE_CURRENT_BINARY_DIR}/DelayedDeletion-build/${Prefix}DelayedDeletion${Suffix} + ${CMAKE_CURRENT_BINARY_DIR}/DelayedDeletion-build/${Prefix}DelayedDeletion${Suffix}.${ORTHANC_VERSION} DESTINATION "share/orthanc/plugins") endif() endif()