Browse Source

Use HAVE_BFD instead of CTK_HAVE_BFD in Libs/Core/CMakeLists.txt

Jean-Christophe Fillion-Robin 14 years ago
parent
commit
3287c8c7b9
1 changed files with 2 additions and 2 deletions
  1. 2 2
      Libs/Core/CMakeLists.txt

+ 2 - 2
Libs/Core/CMakeLists.txt

@@ -4,7 +4,7 @@ PROJECT(CTKCore)
 SET(CMAKE_MODULE_PATH ${CTKCore_SOURCE_DIR}/CMake ${CMAKE_MODULE_PATH})
 
 # CMake Macros
-INCLUDE(CMake/ctkMacroBFDCheck.cmake)
+INCLUDE(CMake/ctkMacroBFDCheck.cmake) # HAVE_BFD will be set to True if it applies
 
 #
 # See CTK/CMake/ctkMacroBuildLib.cmake for details
@@ -53,7 +53,7 @@ SET(KIT_SRCS
   ctkWorkflowTransitions.h
   )
 
-IF(CTK_HAVE_BFD)
+IF(HAVE_BFD)
   LIST(APPEND KIT_SRCS
     ctkBinaryFileDescriptor.cpp
     ctkBinaryFileDescriptor.h