ITK/Release 4/Modularization/Add a module/itk-module.cmake: Difference between revisions

From KitwarePublic
Jump to navigationJump to search
No edit summary
No edit summary
 
(6 intermediate revisions by 5 users not shown)
Line 1: Line 1:
{{#tag:syntaxhighlight
|


set(DOCUMENTATION "This module contains the central classes of the Foo related algorithms ...")
set(DOCUMENTATION "This module contains the central classes of foo-related algorithms ...")


itk_module(ITK-Foo DEPENDS ITK-Common TEST_DEPENDS ITK-TestKernel ITK-Statistics DESCRIPTION "${DOCUMENTATION}")
# itk_module() defines the module dependencies in ITKFoo
# ITKFoo depends on ITKCommon
# The testing module in ITKFoo depends on ITKTestKernel and ITKStatistics(besides ITK-Foo)


#extra test dependency on ITK-Statistics introduced by itkStatisticalFooTest.
itk_module(ITKFoo
  DEPENDS
    ITKCommon
  TEST_DEPENDS
    ITKTestKernel
    ITKStatistics
  DESCRIPTION
    "${DOCUMENTATION}"
)


# Extra test dependency on ITKStatistics introduced by itkStatisticalFooTest.


 
|lang=cmake}}
  # itk_module() defines the module dependencies in ITK-Foo
  # ITK-Foo depends on ITK-Common
  # The testing module in ITK-Foo depends on ITK-TestKernel and ITK-Statistics(besides ITK-Foo)

Latest revision as of 16:31, 14 July 2012

<syntaxhighlight lang="cmake">

set(DOCUMENTATION "This module contains the central classes of foo-related algorithms ...")

  1. itk_module() defines the module dependencies in ITKFoo
  2. ITKFoo depends on ITKCommon
  3. The testing module in ITKFoo depends on ITKTestKernel and ITKStatistics(besides ITK-Foo)

itk_module(ITKFoo

 DEPENDS
   ITKCommon
 TEST_DEPENDS
   ITKTestKernel
   ITKStatistics
 DESCRIPTION
   "${DOCUMENTATION}"

)

  1. Extra test dependency on ITKStatistics introduced by itkStatisticalFooTest.

</syntaxhighlight>