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

From KitwarePublic
Jump to navigationJump to search
(Recommended formatting for .cmake file)
No edit summary
Line 18: Line 18:
)
)


#extra test dependency on ITK-Statistics introduced by itkStatisticalFooTest.
# Extra test dependency on ITK-Statistics introduced by itkStatisticalFooTest.


|lang=cmake}}
|lang=cmake}}

Revision as of 15:08, 1 July 2011

<syntaxhighlight lang="cmake">

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

  1. itk_module() defines the module dependencies in ITK-Foo
  2. ITK-Foo depends on ITK-Common
  3. The testing module in ITK-Foo depends on ITK-TestKernel and ITK-Statistics(besides ITK-Foo)

itk_module(ITK-Foo

 DEPENDS
   ITK-Common
 TEST_DEPENDS
   ITK-TestKernel
   ITK-Statistics
 DESCRIPTION
   "${DOCUMENTATION}"

)

  1. Extra test dependency on ITK-Statistics introduced by itkStatisticalFooTest.

</syntaxhighlight>