File tree Expand file tree Collapse file tree 7 files changed +31
-31
lines changed Expand file tree Collapse file tree 7 files changed +31
-31
lines changed Original file line number Diff line number Diff line change @@ -8,8 +8,8 @@ compare_to_baseline(EXAMPLE_NAME Ellipse
8
8
BASELINE_PREFIX EllipseOutput
9
9
)
10
10
11
- add_example (LineSpatialObject )
12
- compare_to_baseline (EXAMPLE_NAME LineSpatialObject
11
+ add_example (CreateALineSpatialObject )
12
+ compare_to_baseline (EXAMPLE_NAME CreateALineSpatialObject
13
13
BASELINE_PREFIX line
14
14
)
15
15
Original file line number Diff line number Diff line change
1
+ cmake_minimum_required (VERSION 3.10.2 )
2
+
3
+ project (CreateALineSpatialObject )
4
+
5
+ find_package (ITK REQUIRED )
6
+ include (${ITK_USE_FILE} )
7
+
8
+
9
+ add_executable (CreateALineSpatialObject Code.cxx )
10
+ target_link_libraries (CreateALineSpatialObject ${ITK_LIBRARIES} )
11
+
12
+ install (TARGETS CreateALineSpatialObject
13
+ DESTINATION bin/ITKSphinxExamples/Core/SpatialObjects
14
+ COMPONENT Runtime
15
+ )
16
+
17
+ install (FILES Code.cxx CMakeLists.txt
18
+ DESTINATION share/ITKSphinxExamples/Code/Core/SpatialObjects/CreateALineSpatialObject/
19
+ COMPONENT Code
20
+ )
21
+
22
+
23
+ enable_testing ()
24
+ add_test (NAME CreateALineSpatialObjectTest
25
+ COMMAND ${CMAKE_RUNTIME_OUTPUT_DIRECTORY} /CreateALineSpatialObject )
26
+
File renamed without changes.
Original file line number Diff line number Diff line change 1
- Line Spatial Object
2
- ===================
1
+ Create a Line Spatial Object
2
+ ============================
3
3
4
4
.. index ::
5
5
single: LineSpatialObject
File renamed without changes.
Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -7,5 +7,5 @@ SpatialObjects
7
7
Blob/Documentation.rst
8
8
ContourSpatialObject/Documentation.rst
9
9
ConvertSpatialObjectToImage/Documentation.rst
10
+ CreateALineSpatialObject/Documentation.rst
10
11
Ellipse/Documentation.rst
11
- LineSpatialObject/Documentation.rst
You can’t perform that action at this time.
0 commit comments