-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathCMakeLists.txt
More file actions
32 lines (27 loc) · 2.08 KB
/
CMakeLists.txt
File metadata and controls
32 lines (27 loc) · 2.08 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
cmake_minimum_required(VERSION 3.13.4)
project(BrainVolumeRefinement)
#-----------------------------------------------------------------------------
# Extension meta-information
set(EXTENSION_HOMEPAGE "https://slicerbrainvolumerefinement.readthedocs.io/en/latest/")
set(EXTENSION_CATEGORY "Segmentation")
set(EXTENSION_CONTRIBUTORS "Antonio Carlos da S. Senra Filho, Fabricio H. Simozo, Luiz Otavio Murta Junior (University of Sao Paulo)")
set(EXTENSION_DESCRIPTION "This extension offers algorithms to performs brain volume refinements due to previous image processing that results on small data artifacts. For instance, the BVeR method is designed to correct small oversegmentation found at brain extraction methods such as FSL-BET, FreeSurfer, AFNI, ROBEX and others.")
set(EXTENSION_ICONURL "https://raw.githubusercontent.com/CSIM-Toolkits/SlicerBrainVolumeRefinement/refs/heads/main/docs/assets/BrainVolumeRefinement.png")
set(EXTENSION_SCREENSHOTURLS "
https://raw.githubusercontent.com/CSIM-Toolkits/SlicerBrainVolumeRefinement/refs/heads/main/docs/assets/T1-FS.png
https://raw.githubusercontent.com/CSIM-Toolkits/SlicerBrainVolumeRefinement/refs/heads/main/docs/assets/T1-FS-BVeR.png
https://raw.githubusercontent.com/CSIM-Toolkits/SlicerBrainVolumeRefinement/refs/heads/main/docs/assets/BVeR-3D-Anterior.png
https://raw.githubusercontent.com/CSIM-Toolkits/SlicerBrainVolumeRefinement/refs/heads/main/docs/assets/BVeR-3D-Lateral.png
https://raw.githubusercontent.com/CSIM-Toolkits/SlicerBrainVolumeRefinement/refs/heads/main/docs/assets/BVeR-3D-FreeView.png")
set(EXTENSION_DEPENDS "NA") # Specified as a space separated string, a list or 'NA' if any
#-----------------------------------------------------------------------------
# Extension dependencies
find_package(Slicer REQUIRED)
include(${Slicer_USE_FILE})
#-----------------------------------------------------------------------------
# Extension modules
add_subdirectory(BVeR)
## NEXT_MODULE
#-----------------------------------------------------------------------------
include(${Slicer_EXTENSION_GENERATE_CONFIG})
include(${Slicer_EXTENSION_CPACK})