ITK/Release 4/Modularization/Add a module/CMakeLists.txt: Difference between revisions

From KitwarePublic
Jump to navigationJump to search
No edit summary
No edit summary
Line 1: Line 1:
If this module only contains template source codes (no "src" subdirectory):  
If this module only contains template source codes (no "src" subdirectory):  
{{#tag:syntaxhighlight
|
  project(ITK-Foo)
  project(ITK-Foo)
    
    
  itk_module_impl() #itk_module_impl() takes care of the installation and export rule for the module ITK-Foo
  itk_module_impl() #itk_module_impl() takes care of the installation and export rule for the module ITK-Foo
|lang=cmake}}




If this module generates a library (has a "src" subdirectory):
If this module generates a library (has a "src" subdirectory):
{{#tag:syntaxhighlight
|
   project(ITK-Foo)
   project(ITK-Foo)
    
    
   set(ITK-Foo_LIBRARIES ITK-Foo) # need to specify the library names
   set(ITK-Foo_LIBRARIES ITK-Foo) # need to specify the library names
   itk_module_impl()
   itk_module_impl()
|lang=cmake}}

Revision as of 14:50, 19 June 2011

If this module only contains template source codes (no "src" subdirectory): <syntaxhighlight lang="cmake">

project(ITK-Foo)
 
itk_module_impl() #itk_module_impl() takes care of the installation and export rule for the module ITK-Foo

</syntaxhighlight>


If this module generates a library (has a "src" subdirectory): <syntaxhighlight lang="cmake">

 project(ITK-Foo)
 
 set(ITK-Foo_LIBRARIES ITK-Foo) # need to specify the library names
 itk_module_impl()

</syntaxhighlight>