View Issue Details Jump to Notes ] Print ]
IDProjectCategoryView StatusDate SubmittedLast Update
0008055IGSTKIGSTKpublic2008-11-07 08:482009-02-17 17:20
ReporterAndinet 
Assigned ToAndinet 
PrioritynormalSeverityminorReproducibilityhave not tried
StatusassignedResolutionopen 
PlatformOSOS Version
Summary0008055: Bug in ITK version check logic
DescriptionThe logic that checks the version of ITK has a bug.....

IF( ${ITK_VERSION_MAJOR}.${ITK_VERSION_MINOR} LESS 3.4)

ITK version numbering could go up to 3.11...

The major and minor version numbers should be separately checked...

IF( ${ITK_VERSION_MAJOR} LESS 3)

IF( ${ITK_VERSION_MINOR} LESS 4)
TagsNo tags attached.
Attached Files

 Relationships

  Notes
(0015088)
domibel (reporter)
2009-02-17 17:20

cmake 2.6

  if(version1 VERSION_LESS version2)
  if(version1 VERSION_EQUAL version2)
  if(version1 VERSION_GREATER version2)

Component-wise integer version number comparison (version format is major[.minor[.patch[.tweak]]]).

 Issue History
Date Modified Username Field Change
2008-11-07 08:48 Andinet New Issue
2008-11-07 08:48 Andinet Status new => assigned
2008-11-07 08:48 Andinet Assigned To => Patrick Cheng
2008-11-07 08:48 Andinet Assigned To Patrick Cheng => Andinet
2009-02-17 17:20 domibel Note Added: 0015088


Copyright © 2000 - 2018 MantisBT Team