changeset 22:319d41a22de4

more lightweight use of Orthanc framework
author Sebastien Jodogne <s.jodogne@gmail.com>
date Mon, 07 Sep 2020 14:17:43 +0200
parents 44de9edf2443
children e48acd7bc577
files .hgignore Aws/CMakeLists.txt Azure/CMakeLists.txt Common/EncryptionHelpers.h Google/CMakeLists.txt
diffstat 5 files changed, 12 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/.hgignore	Wed Sep 02 18:15:45 2020 +0200
+++ b/.hgignore	Mon Sep 07 14:17:43 2020 +0200
@@ -1,1 +1,3 @@
+syntax: glob
 CMakeLists.txt.user*
+*~
--- a/Aws/CMakeLists.txt	Wed Sep 02 18:15:45 2020 +0200
+++ b/Aws/CMakeLists.txt	Mon Sep 07 14:17:43 2020 +0200
@@ -19,6 +19,9 @@
 
 set(ENABLE_GOOGLE_TEST ON)
 set(ORTHANC_FRAMEWORK_PLUGIN ON)
+set(ENABLE_MODULE_IMAGES OFF)
+set(ENABLE_MODULE_JOBS OFF)
+set(ENABLE_MODULE_DICOM OFF)
 
 include(${ORTHANC_FRAMEWORK_ROOT}/../Resources/CMake/OrthancFrameworkConfiguration.cmake)
 include(${ORTHANC_FRAMEWORK_ROOT}/../../OrthancServer/Plugins/Samples/Common/OrthancPluginsExports.cmake)
--- a/Azure/CMakeLists.txt	Wed Sep 02 18:15:45 2020 +0200
+++ b/Azure/CMakeLists.txt	Mon Sep 07 14:17:43 2020 +0200
@@ -17,6 +17,9 @@
 
 set(ENABLE_GOOGLE_TEST ON)
 set(ORTHANC_FRAMEWORK_PLUGIN ON)
+set(ENABLE_MODULE_IMAGES OFF)
+set(ENABLE_MODULE_JOBS OFF)
+set(ENABLE_MODULE_DICOM OFF)
 
 include(${ORTHANC_FRAMEWORK_ROOT}/../Resources/CMake/OrthancFrameworkConfiguration.cmake)
 include(${ORTHANC_FRAMEWORK_ROOT}/../../OrthancServer/Plugins/Samples/Common/OrthancPluginsExports.cmake)
--- a/Common/EncryptionHelpers.h	Wed Sep 02 18:15:45 2020 +0200
+++ b/Common/EncryptionHelpers.h	Mon Sep 07 14:17:43 2020 +0200
@@ -100,7 +100,7 @@
 
 public:
 
-  static std::string ToHexString(const CryptoPP::byte* block, size_t size);
+  static std::string ToHexString(const byte* block, size_t size);
   static std::string ToHexString(const std::string& block);
   static std::string ToHexString(const CryptoPP::SecByteBlock& block);
   static std::string ToString(const CryptoPP::SecByteBlock& block);
--- a/Google/CMakeLists.txt	Wed Sep 02 18:15:45 2020 +0200
+++ b/Google/CMakeLists.txt	Mon Sep 07 14:17:43 2020 +0200
@@ -17,6 +17,9 @@
 
 set(ENABLE_GOOGLE_TEST ON)
 set(ORTHANC_FRAMEWORK_PLUGIN ON)
+set(ENABLE_MODULE_IMAGES OFF)
+set(ENABLE_MODULE_JOBS OFF)
+set(ENABLE_MODULE_DICOM OFF)
 
 include(${ORTHANC_FRAMEWORK_ROOT}/../Resources/CMake/OrthancFrameworkConfiguration.cmake)
 include(${ORTHANC_FRAMEWORK_ROOT}/../../OrthancServer/Plugins/Samples/Common/OrthancPluginsExports.cmake)