]> Creatis software - crea.git/commitdiff
*** empty log message ***
authorJuan Prieto <Juan.Prieto@creatis.insa-lyon.fr>
Mon, 5 Oct 2009 19:41:55 +0000 (19:41 +0000)
committerJuan Prieto <Juan.Prieto@creatis.insa-lyon.fr>
Mon, 5 Oct 2009 19:41:55 +0000 (19:41 +0000)
cmake/CREAMacro_FindAndUseLibraries.cmake
src/creaVtkBasicSlicer.h
src/creawxVTKRenderWindowInteractor.cxx

index a2ce726a031fa5929e1fe5ae074305ececd5d413..9e1812575966ef67334231af7df1ed720fa7c673 100644 (file)
@@ -274,15 +274,19 @@ IF(USE_BOOST)
           
       CREA_DEFINE( USE_BOOST )
          IF(WIN32)
-               LINK_DIRECTORIES( ${Boost_INCLUDE_DIRS}/stage/lib)
+               
+               LINK_DIRECTORIES( ${Boost_INCLUDE_DIRS}/stage/lib) #JCP 01/10/2009
+               #LINK_DIRECTORIES( ${Boost_LIBRARY_DIRS})
                #MESSAGE ("EED " ${Boost_LIBRARY_DIRS})
                #libboost_signals-vc71-mt-1_37
                #libboost_filesystem-vc71-mt-1_37
                #boost_date_time-vc71-mt-1_37
+       
+               #message("creamacro find and use lib = ${Boost_SIGNALS_LIBRARY}")
                SET(BOOST_LIBRARIES
-                               boost_signals-vc90-mt-1_37                
-                boost_filesystem-vc90-mt-1_37
-                boost_date_time-vc90-mt-1_37
+                               boost_signals-vc90-mt
+                boost_filesystem-vc90-mt
+                boost_date_time-vc90-mt
                   
                   #what about boost_thread? JPR
            )
index 4c110f2a229be1aad6655f2f90842949af8d5bb0..b0eca92eb3a4cbe75c726d6f545c23f828bf4a12 100644 (file)
@@ -9,7 +9,7 @@
 namespace crea
 {
   
-  void CREA_EXPORT VtkBasicSlicer( vtkImageData* I );
+  CREA_EXPORT void VtkBasicSlicer( vtkImageData* I );
 }
 
 
index 107c0e30d83875458c027b86518363db119f20d6..4f6a0bb28b6638cf580728394d25c7a6a401a9f9 100644 (file)
@@ -3,8 +3,8 @@
   Program:   Visualization Toolkit
   Module:    $RCSfile: creawxVTKRenderWindowInteractor.cxx,v $
   Language:  C++
-  Date:      $Date: 2009/01/07 12:55:23 $
-  Version:   $Revision: 1.4 $
+  Date:      $Date: 2009/10/05 19:41:56 $
+  Version:   $Revision: 1.5 $
 
   Copyright (c) 1993-2002 Ken Martin, Will Schroeder, Bill Lorensen 
   All rights reserved.
@@ -160,7 +160,7 @@ creawxVTKRenderWindowInteractor::creawxVTKRenderWindowInteractor(wxWindow *paren
 #if defined(__WXGTK__) && defined(USE_WXGLCANVAS)
       : vtkRenderWindowInteractor(), wxGLCanvas(parent, id, pos, size, style, name)
 #else
-      : vtkRenderWindowInteractor(), wxWindow(parent, id, pos, size, style, name)
+      : wxWindow(parent, id, pos, size, style, name), vtkRenderWindowInteractor()
 #endif //__WXGTK__
       , timer(this, ID_creawxVTKRenderWindowInteractor_TIMER)
       , ActiveButton(wxEVT_NULL)