ITK/Release 4/Modularization/Add a module/src/CMakeLists.txt: Difference between revisions
From KitwarePublic
< ITK | Release 4 | Modularization
Jump to navigationJump to search
No edit summary |
Daviddoria (talk | contribs) m (moved ITK Release 4/Modularization/Add a module/src/CMakeLists.txt to ITK/Release 4/Modularization/Add a module/src/CMakeLists.txt) |
||
(4 intermediate revisions by 2 users not shown) | |||
Line 1: | Line 1: | ||
{{#tag:syntaxhighlight | |||
| | |||
set(ITKFoo SRC | |||
itkFoo.cxx | itkFoo.cxx | ||
) | ) | ||
add_library( | add_library(ITKFoo ${ITKFoo_SRC}) | ||
target_link_libraries( | target_link_libraries(ITKFoo ITKCommon [...]) # specify all target link libraries | ||
itk_module_target( | itk_module_target(ITKFoo) # itk_module_target() set up the rules for installation and target export of this module | ||
|lang=cmake}} |
Latest revision as of 16:00, 9 December 2011
<syntaxhighlight lang="cmake">
set(ITKFoo SRC itkFoo.cxx ) add_library(ITKFoo ${ITKFoo_SRC}) target_link_libraries(ITKFoo ITKCommon [...]) # specify all target link libraries itk_module_target(ITKFoo) # itk_module_target() set up the rules for installation and target export of this module
</syntaxhighlight>