From: Dragan T. <dr...@us...> - 2006-12-25 20:12:53
|
Update of /cvsroot/octaviz/octaviz/Hybrid In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv30548/Hybrid Modified Files: CMakeLists.txt Log Message: Fixed segfaults due to the reference counting in octave_value (octave 2.9.x) Fixed varargin issue (hope so) Fixed (somewhat) the build system. This version should not be used for anything but testing. Index: CMakeLists.txt =================================================================== RCS file: /cvsroot/octaviz/octaviz/Hybrid/CMakeLists.txt,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -u -d -r1.1.1.1 -r1.2 --- CMakeLists.txt 21 Sep 2004 22:50:39 -0000 1.1.1.1 +++ CMakeLists.txt 25 Dec 2006 20:12:50 -0000 1.2 @@ -1,4 +1,5 @@ -SET(KIT_WRAP_DEPS Rendering) -OCTAVE_WRAP_VTK(Hybrid HYBRID "${KIT_WRAP_DEPS}") -INSTALL_PROGRAMS(${OCT_INST_DIR}/octaviz ${all_oct}) +SET( KIT_WRAP_DEPS Rendering ) +OCTAVE_WRAP_VTK( Hybrid HYBRID "${KIT_WRAP_DEPS}") +ADD_CUSTOM_TARGET( Hybrid ALL COMMAND touch Hybrid DEPENDS ${all_oct} ) +INSTALL_PROGRAMS( ${OCT_INST_DIR}/octaviz ${all_oct} ) #INSTALL_PROGRAMS(${OCT_INST_DIR}/octaviz vtkHybrid.oct) \ No newline at end of file |