Skip to content
GitLab
Explore
Sign in
Register
Commits on Source (2)
Prevent tensorflow download as this is not even needed in the project
· 645b441f
Shayan Doust
authored
Aug 09, 2019
645b441f
Use libdcmtk-dev instead of local download and compilation
· 61aac010
Shayan Doust
authored
Aug 09, 2019
61aac010
Expand all
Show whitespace changes
Inline
Side-by-side
debian/control
View file @
61aac010
...
...
@@ -15,6 +15,7 @@ Build-Depends: debhelper-compat (= 12),
ocl-icd-opencl-dev,
libopenslide-dev,
libopenigtlink-dev,
libdcmtk-dev,
git
Standards-Version: 4.3.0
Vcs-Browser: https://salsa.debian.org/med-team/fast
...
...
debian/patches/prevent_cmake_downloading.patch
View file @
61aac010
This diff is collapsed.
Click to expand it.
debian/patches/use_system_libs.patch
View file @
61aac010
...
...
@@ -5,9 +5,9 @@ Author: Shayan Doust <hello@shayandoust.me>
Index: fast/CMakeLists.txt
===================================================================
--- fast.orig/CMakeLists.txt 2019-08-0
8 19:28:18.008989077
+0100
+++ fast/CMakeLists.txt 2019-08-0
8 19:28:40.589176448
+0100
@@ -170,6 +170,1
3
@@
--- fast.orig/CMakeLists.txt 2019-08-0
9 04:17:42.918244664
+0100
+++ fast/CMakeLists.txt 2019-08-0
9 04:17:57.242362402
+0100
@@ -170,6 +170,1
7
@@
qt5_use_modules(FAST Widgets OpenGL) # Add Qt 5 modules
endif()
...
...
@@ -17,6 +17,10 @@ Index: fast/CMakeLists.txt
+target_link_libraries(FAST PUBLIC openslide)
+target_link_libraries(FAST PUBLIC z)
+target_link_libraries(FAST PUBLIC OpenIGTLink)
+target_link_libraries(FAST PUBLIC ofstd)
+target_link_libraries(FAST PUBLIC oflog)
+target_link_libraries(FAST PUBLIC dcmdata)
+target_link_libraries(FAST PUBLIC dcmimgle)
+
## Build test executable
if(FAST_BUILD_TESTS)
...
...