]> Creatis software - creaImageIO.git/commitdiff
*** empty log message ***
authorguigues <guigues>
Tue, 30 Sep 2008 08:41:52 +0000 (08:41 +0000)
committerguigues <guigues>
Tue, 30 Sep 2008 08:41:52 +0000 (08:41 +0000)
CMakeLists.txt
src/CMakeLists.txt
src/treelistctrl.cpp
src/treelistctrl.h

index 66c9894cf4daaf4ddd570e376ba75293ce5bed6f..def1eead344fe975ff1803c0363a96478c94675e 100644 (file)
@@ -1,28 +1,24 @@
 PROJECT(creaImageIO)
 
-SET(crea_VERBOSE_FIND_LIBRARY TRUE)
+SET(PROJECT_MAJOR_VERSION 1)
+SET(PROJECT_MINOR_VERSION 0)
+SET(PROJECT_BUILD_VERSION 0)
+
+SET(CREA_VERBOSE_CMAKE TRUE)
 
 FIND_PACKAGE(crea REQUIRED)
 IF (crea_FOUND)
   INCLUDE(${crea_USE_FILE})
 ENDIF(crea_FOUND)
 
-crea_DEFINE( MY_DEFINITION )
-crea_DEFINE_WITH_VAL( MY_OTHER_DEFINITION TOTO)
-
-
-SET(PROJECT_MAJOR_VERSION 1)
-SET(PROJECT_MINOR_VERSION 0)
-SET(PROJECT_BUILD_VERSION 0)
-
 SET(USE_GDCM ON)
 SET(USE_GDCM_VTK ON)
 SET(USE_WXWIDGETS ON)
 SET(USE_VTK ON)
+SET(USE_ITK OFF)
 SET(USE_BOOST ON)
-SET(USE_SQLITE3 ON)
 
-INCLUDE(${crea_CMAKE_DIR}/FindAndUseLibraries.cmake)
+CREA_FIND_AND_USE_LIBRARIES()
 
 SET(EXECUTABLE_OUTPUT_PATH ${PROJECT_BINARY_DIR})
 SET(LIBRARY_OUTPUT_PATH ${PROJECT_BINARY_DIR})
index f9c3afba127395bf15625da12af74bf9531258d7..7a0ac0785c03d307401e9f2491c2cac0d42ae026 100644 (file)
@@ -72,5 +72,5 @@ INSTALL(
   TARGETS creaImageIO 
   DESTINATION lib)
 
-crea_DEFAULT_INSTALL_LIBRARY_FOR_CMAKE(creaImageIO)
+CREA_INSTALL_LIBRARY_FOR_CMAKE(creaImageIO)
 #-----------------------------------------------------------------------------
index 9ed044fd476ffc4571e4695b058333f1a9eb84ae..205a5cae963c61654acf4207495889f0ca6993e9 100644 (file)
@@ -4,7 +4,7 @@
 // Author:      Robert Roebling
 // Maintainer:  Otto Wyss
 // Created:     01/02/97
-// RCS-ID:      $Id: treelistctrl.cpp,v 1.1 2008/09/26 14:15:48 guigues Exp $
+// RCS-ID:      $Id: treelistctrl.cpp,v 1.2 2008/09/30 08:41:54 guigues Exp $
 // Copyright:   (c) 2004 Robert Roebling, Julian Smart, Alberto Griggio,
 //              Vadim Zeitlin, Otto Wyss
 // Licence:     wxWindows
   #pragma implementation "treelistctrl.h"
 #endif
 
-// For compilers that support precompilation, includes "wx.h".
-#include "wx/wxprec.h"
-
-#ifdef __BORLANDC__
-    #pragma hdrstop
-#endif
 
 
 #include <wx/treebase.h>
index 12ad46d91d518ec997ea5d6071494e13d4e7280a..a5c31b8e491b7dee8d11517e99330f41e30409b3 100644 (file)
@@ -4,7 +4,7 @@
 // Author:      Robert Roebling
 // Maintainer:  Otto Wyss
 // Created:     01/02/97
-// RCS-ID:      $Id: treelistctrl.h,v 1.1 2008/09/26 14:15:48 guigues Exp $
+// RCS-ID:      $Id: treelistctrl.h,v 1.2 2008/09/30 08:41:54 guigues Exp $
 // Copyright:   (c) 2004 Robert Roebling, Julian Smart, Alberto Griggio,
 //              Vadim Zeitlin, Otto Wyss
 // Licence:     wxWindows
@@ -24,6 +24,7 @@
 #endif
 
 #include <creaImageIOSystem.h>
+#include <creaWx.h>
 
 #include <wx/treectrl.h>
 #include <wx/control.h>