-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCMakeLists.txt
30 lines (25 loc) · 1.36 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
cmake_minimum_required(VERSION 3.5)
project(Slicer_FFT)
#-----------------------------------------------------------------------------
# Extension meta-information
set(EXTENSION_HOMEPAGE "http://slicer.org/slicerWiki/index.php/Documentation/Nightly/Extensions/Slicer_FFT")
set(EXTENSION_CATEGORY "Frequency")
set(EXTENSION_CONTRIBUTORS "Pablo Hernandez-Cerdan (Kitware, Inc.)")
set(EXTENSION_DESCRIPTION "Methods for conversion of images to the frequency domain (Fast Fourier Transform)
and filter for manipulation of images in the frequency domain, such as low and high frequency filters,
and band pass filters. ")
set(EXTENSION_ICONURL "http://www.example.com/Slicer/Extensions/Slicer_FFT.png")
set(EXTENSION_SCREENSHOTURLS "http://www.example.com/Slicer/Extensions/Slicer_FFT/Screenshots/1.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(FFT)
add_subdirectory(FrequencyFiltering)
## NEXT_MODULE
#-----------------------------------------------------------------------------
include(${Slicer_EXTENSION_GENERATE_CONFIG})
include(${Slicer_EXTENSION_CPACK})