-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathitk-module.cmake
More file actions
31 lines (26 loc) · 909 Bytes
/
itk-module.cmake
File metadata and controls
31 lines (26 loc) · 909 Bytes
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
# the top-level README is used for describing this module, just
# re-used it for documentation here
get_filename_component(MY_CURRENT_DIR "${CMAKE_CURRENT_LIST_FILE}" PATH)
file(READ "${MY_CURRENT_DIR}/README.md" DOCUMENTATION)
set(DOCUMENTATION
"New classes increase operating system process priority to
minimize the impact of other processes running on the system.
These classes are used by a used by a suite of example ITK benchmarks to
quantify toolkit performance.
For more information, see::
McCormick M., Kang H.J., Barre S.
Performance Benchmarking the Insight Toolkit
The Insight Journal. January-December. 2016.
https://hdl.handle.net/10380/3557
https://insight-journal.org/browse/publication/972
")
itk_module(PerformanceBenchmarking
ENABLE_SHARED
PRIVATE_DEPENDS
ITKCommon
TEST_DEPENDS
ITKTestKernel
EXCLUDE_FROM_DEFAULT
DESCRIPTION
"${DOCUMENTATION}"
)