From: mkr Date: Fri, 29 Feb 2008 15:41:54 +0000 (+0000) Subject: Move VTK_LIBS flags to the end of LDFLAGS to avoid dependence from the native qwt... X-Git-Tag: V5_0_0a1~38 X-Git-Url: http://git.salome-platform.org/gitweb/?a=commitdiff_plain;h=f8fda68e6f880617eae60a6937e8d187d64314ad;p=modules%2Fvisu.git Move VTK_LIBS flags to the end of LDFLAGS to avoid dependence from the native qwt library => to avoid the dependence from the native qt library (NB: at the current moment the version of the native qt is lower than 4). --- diff --git a/src/VISU_I/Makefile.am b/src/VISU_I/Makefile.am index 05adffe1..3cc68f91 100644 --- a/src/VISU_I/Makefile.am +++ b/src/VISU_I/Makefile.am @@ -111,7 +111,6 @@ libVISUEngineImpl_la_CPPFLAGS= \ -I$(top_builddir)/salome_adm/unix libVISUEngineImpl_la_LDFLAGS= \ - $(VTK_LIBS) \ $(PYTHON_LIBS) \ $(QT_MT_LIBS) \ $(QWT_LIBS) \ @@ -119,7 +118,8 @@ libVISUEngineImpl_la_LDFLAGS= \ $(KERNEL_LDFLAGS) \ $(GUI_LDFLAGS) \ $(MED_LDFLAGS) \ - ../../idl/libSalomeIDLVISU.la + ../../idl/libSalomeIDLVISU.la \ + $(VTK_LIBS) libVISUEngineImpl_la_LIBADD= \ -lboost_signals@BOOST_LIBSUFFIX@ \