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

From KitwarePublic
Jump to navigationJump to search
No edit summary
No edit summary
Line 4: Line 4:
    
    
   add_library(ITK-Foo ${ITK-Foo_SRC})
   add_library(ITK-Foo ${ITK-Foo_SRC})
   target_link_libraries(ITK-Foo  ${ITK-Foo_LIBRARIES}) ${ITK-Foo_LIBRARIES} is defined in Foo/CMakeLists.txt
   target_link_libraries(ITK-Foo  ${ITK-Foo_LIBRARIES}) # ${ITK-Foo_LIBRARIES} is defined in Foo/CMakeLists.txt
   itk_module_target(ITK-Foo)  # itk_module_target() set up the rules for installation and target export of this module
   itk_module_target(ITK-Foo)  # itk_module_target() set up the rules for installation and target export of this module

Revision as of 17:13, 7 April 2011

 set(ITK-Foo SRC
    itkFoo.cxx
    )
  
 add_library(ITK-Foo ${ITK-Foo_SRC})
 target_link_libraries(ITK-Foo  ${ITK-Foo_LIBRARIES}) # ${ITK-Foo_LIBRARIES} is defined in Foo/CMakeLists.txt
 itk_module_target(ITK-Foo)  # itk_module_target() set up the rules for installation and target export of this module