-
Notifications
You must be signed in to change notification settings - Fork 26
/
Copy pathCMakeLists.txt
47 lines (42 loc) · 2.09 KB
/
CMakeLists.txt
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
cmake_minimum_required(VERSION 3.16.3...3.19.7 FATAL_ERROR)
project(AutomatedDentalTools)
#-----------------------------------------------------------------------------
# Extension meta-information
set(EXTENSION_HOMEPAGE "https://github.com/DCBIA-OrthoLab/SlicerAutomatedDentalTools/blob/main/README.md")
set(EXTENSION_CATEGORY "SlicerCMF")
set(EXTENSION_CONTRIBUTORS "Maxime Gillot (University of Michigan), Baptiste Baquero (UoM), Juan Carlos Prieto (University of North Carolina), Nathan Hutin (UoM), Luc Anchling (UoM), Jeanne Claret (UoM), Gaelle Leroux(UoM) Lucie Dole (University of North Carolina)")
set(EXTENSION_DESCRIPTION "This extension will allow clinicians to perform automatic CBCT scan segmentation as well as automatic lamndmark identification in CBCT and IOS using machine learning tools.")
set(EXTENSION_ICONURL "https://raw.githubusercontent.com/DCBIA-OrthoLab/SlicerAutomatedDentalTools/main/SlicerAutomaticTools.png")
set(EXTENSION_SCREENSHOTURLS "https://raw.githubusercontent.com/DCBIA-OrthoLab/SlicerAutomatedDentalTools/main/ADT-exemple.png")
set(EXTENSION_DEPENDS
SlicerDentalModelSeg
SlicerConda)# Specified as a list or "NA" if no dependencies
#-----------------------------------------------------------------------------
# Extension dependencies
find_package(Slicer REQUIRED)
include(${Slicer_USE_FILE})
#-----------------------------------------------------------------------------
# Extension modules
add_subdirectory(AMASSS)
add_subdirectory(AMASSS_CLI)
add_subdirectory(ALI)
add_subdirectory(ALI_CBCT)
add_subdirectory(ALI_IOS)
add_subdirectory(ASO)
add_subdirectory(ASO_IOS)
add_subdirectory(ASO_CBCT)
add_subdirectory(AREG_IOS)
add_subdirectory(AREG_CBCT)
add_subdirectory(AREG)
add_subdirectory(AutoMatrix)
add_subdirectory(AutoCrop3D)
add_subdirectory(FlexReg)
add_subdirectory(FlexReg_CLI)
add_subdirectory(MRI2CBCT)
add_subdirectory(MRI2CBCT_CLI)
add_subdirectory(DOCShapeAXI)
add_subdirectory(DOCShapeAXI_CLI)
## NEXT_MODULE
#-----------------------------------------------------------------------------
include(${Slicer_EXTENSION_GENERATE_CONFIG})
include(${Slicer_EXTENSION_CPACK})