1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
|
Description: Fix the inclusion of the JavaScript libraries
Author: Sebastien Jodogne <s.jodogne@orthanc-labs.com>
---
This patch header follows DEP-3: http://dep.debian.net/deps/dep3/
Index: OrthancWSI-3.3/ViewerPlugin/CMakeLists.txt
===================================================================
--- OrthancWSI-3.3.orig/ViewerPlugin/CMakeLists.txt
+++ OrthancWSI-3.3/ViewerPlugin/CMakeLists.txt
@@ -146,7 +146,8 @@ endif()
## Prepare JavaScript libraries
#####################################################################
-include(${CMAKE_SOURCE_DIR}/../Resources/CMake/JavaScriptLibraries.cmake)
+#include(${CMAKE_SOURCE_DIR}/../Resources/CMake/JavaScriptLibraries.cmake)
+include(${CMAKE_SOURCE_DIR}/../debian/missing-sources/JavaScriptLibraries.cmake)
if (STANDALONE_BUILD)
add_definitions(-DORTHANC_STANDALONE=1)
|