# HG changeset patch # User Sebastien Jodogne # Date 1630064410 -7200 # Node ID cb0ace7b4994fd4714b4133f3b61fa98eb65f96c # Parent fe5f86967c77c0c52455da08f363f8a5cf36ef6b fix path to images diff -r fe5f86967c77 -r cb0ace7b4994 CMakeLists.txt --- a/CMakeLists.txt Fri Aug 27 13:27:57 2021 +0200 +++ b/CMakeLists.txt Fri Aug 27 13:40:10 2021 +0200 @@ -103,7 +103,7 @@ else() add_definitions( -DORTHANC_STANDALONE=0 - -DTCIA_SOURCE_DIR="${CMAKE_SOURCE_DIR}/WebApplication/" + -DTCIA_SOURCE_DIR="${CMAKE_SOURCE_DIR}" ) endif() diff -r fe5f86967c77 -r cb0ace7b4994 Plugin/Plugin.cpp --- a/Plugin/Plugin.cpp Fri Aug 27 13:27:57 2021 +0200 +++ b/Plugin/Plugin.cpp Fri Aug 27 13:40:10 2021 +0200 @@ -337,13 +337,13 @@ "/tcia/app/js/vue.min.js"); RegisterEmbeddedResource( - "/tcia/app/tcia-logo.png"); + "/tcia/app/images/tcia-logo.png"); RegisterEmbeddedResource( - "/tcia/app/orthanc-logo.png"); + "/tcia/app/images/orthanc-logo.png"); RegisterEmbeddedResource( - "/tcia/app/nbia-export.png"); + "/tcia/app/images/nbia-export.png"); } return 0;