|
From: <kin...@us...> - 2023-07-13 10:50:38
|
Revision: 7081
http://sourceforge.net/p/teem/code/7081
Author: kindlmann
Date: 2023-07-13 10:50:36 +0000 (Thu, 13 Jul 2023)
Log Message:
-----------
trimming down how many EXPERIMENTAL_APPS there are
Modified Paths:
--------------
teem/trunk/src/bin/CMakeLists.txt
Modified: teem/trunk/src/bin/CMakeLists.txt
===================================================================
--- teem/trunk/src/bin/CMakeLists.txt 2023-07-12 19:14:11 UTC (rev 7080)
+++ teem/trunk/src/bin/CMakeLists.txt 2023-07-13 10:50:36 UTC (rev 7081)
@@ -38,26 +38,29 @@
CREATE_EXEC(miter miter.c)
CREATE_EXEC(vprobe vprobe.c)
CREATE_EXEC(gprobe gprobe.c)
-# CREATE_EXEC(ninspect ninspect.c) moved to "unu ninspect"
+# CREATE_EXEC(ninspect ninspect.c) # moved to "unu ninspect"
CREATE_EXEC(unu unu.c)
CREATE_EXEC(puller puller.c)
CREATE_EXEC(tend tend.c)
+# For Teem v2 many of these were removed from compilation: they have no compelling
+# general purpose, for reasons indicated with further comments. No reason
+# to delete the sources though.
# NOTE: The BUILD_EXPERIMENTAL_LIBS-dependent inclusion of binaries has to be
# done with knowledge of how BUILD_EXPERIMENTAL_LIBS behaves in the top-level
# CMakeLists.txt file
if(BUILD_EXPERIMENTAL_APPS)
- CREATE_EXEC(airSanity airSanity.c)
- CREATE_EXEC(cubic cubic.c)
- CREATE_EXEC(qbert qbert.c)
- CREATE_EXEC(ilk ilk.c)
- CREATE_EXEC(emap emap.c)
- CREATE_EXEC(talkweb talkweb.c)
- CREATE_EXEC(pprobe pprobe.c)
- CREATE_EXEC(ungantry ungantry.c)
- CREATE_EXEC(deconv deconv.c)
- if(BUILD_EXPERIMENTAL_LIBS)
- CREATE_EXEC(gkms gkms.c)
- CREATE_EXEC(spots spots.c)
- endif()
+# CREATE_EXEC(airSanity airSanity.c) # tests included in nrrdSanity
+# CREATE_EXEC(cubic cubic.c) # just calls ell_cubic; more easily done via Python wrappers
+# CREATE_EXEC(qbert qbert.c) # created for volume rendering on GPUs from 20 years ago
+# CREATE_EXEC(ilk ilk.c) # now part of unu: "unu ilk"
+ CREATE_EXEC(emap emap.c) # (functionality not currently handled elsewhere)
+# CREATE_EXEC(talkweb talkweb.c) # the web has changed in 20 years
+# CREATE_EXEC(pprobe pprobe.c) # gprobe can do this
+# CREATE_EXEC(ungantry ungantry.c) # gprobe can do this
+ CREATE_EXEC(deconv deconv.c) # (functionality not currently handled elsewhere)
+# if(BUILD_EXPERIMENTAL_LIBS)
+# CREATE_EXEC(gkms gkms.c) # hasn't been tested in a long time
+# CREATE_EXEC(spots spots.c) # hasn't been tested in a long time
+# endif()
endif()
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|