changeset 3628:70398cc7aa15

yet another try...
author Sebastien Jodogne <s.jodogne@gmail.com>
date Sat, 25 Jan 2020 12:04:45 +0100
parents b03854e0f796
children 19966d299685
files CMakeLists.txt Plugins/Samples/ConnectivityChecks/Plugin.cpp
diffstat 2 files changed, 3 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- a/CMakeLists.txt	Sat Jan 25 11:27:23 2020 +0100
+++ b/CMakeLists.txt	Sat Jan 25 12:04:45 2020 +0100
@@ -496,8 +496,8 @@
     ${Flags}
     )
 
-  if (DEFINED CMAKE_RUNTIME_OUTPUT_DIRECTORY)
-    set(Target ${CMAKE_RUNTIME_OUTPUT_DIRECTORY})
+  if (DEFINED RUNTIME_OUTPUT_DIRECTORY)
+    set(Target ${RUNTIME_OUTPUT_DIRECTORY})
   else()
     set(Target ${CMAKE_CURRENT_BINARY_DIR})
   endif()
--- a/Plugins/Samples/ConnectivityChecks/Plugin.cpp	Sat Jan 25 11:27:23 2020 +0100
+++ b/Plugins/Samples/ConnectivityChecks/Plugin.cpp	Sat Jan 25 12:04:45 2020 +0100
@@ -97,7 +97,7 @@
     }
 
     /* Register the callbacks */
-    OrthancPluginSetDescription(context_, "Utilities to check connectivity to DICOM modalities and Orthanc peers.");
+    OrthancPluginSetDescription(context_, "Utilities to check connectivity to DICOM modalities, DICOMweb servers and Orthanc peers.");
     OrthancPluginSetRootUri(context_, ROOT_URI "/app/index.html");
     OrthancPluginRegisterRestCallback(context_, ROOT_URI "/libs/(.*)", ServeStaticResource<Orthanc::EmbeddedResources::LIBRARIES>);
     OrthancPluginRegisterRestCallback(context_, ROOT_URI "/app/(.*)", ServeStaticResource<Orthanc::EmbeddedResources::WEB_RESOURCES>);