summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorbustico2014-12-09 14:28:33 +0000
committerbustico2014-12-09 14:28:33 +0000
commit1a6bb4a1197d7313fb9c3a00ad6e9db6fee4f8fd (patch)
tree72a5e1c810dc877e86537e2149d2b194d7f5c41a /Makefile
parent81c59db04899b607c1a55b9d729c77c26c8f2754 (diff)
downloadivy-cplusplus-1a6bb4a1197d7313fb9c3a00ad6e9db6fee4f8fd.zip
ivy-cplusplus-1a6bb4a1197d7313fb9c3a00ad6e9db6fee4f8fd.tar.gz
ivy-cplusplus-1a6bb4a1197d7313fb9c3a00ad6e9db6fee4f8fd.tar.bz2
ivy-cplusplus-1a6bb4a1197d7313fb9c3a00ad6e9db6fee4f8fd.tar.xz
done some trivial fix on library order to permit Qt example compilation without error with gcc 4.9 (ubuntu 14.10)HEADmaster
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile3
1 files changed, 1 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 559803d..139f112 100644
--- a/Makefile
+++ b/Makefile
@@ -172,8 +172,7 @@ testIvyQt.moc: testIvyQt.cxx
moc $(QTOPT) $(QTINC) -i $< -o $@
testIvyQt : testIvyQt.cxx testIvyQt.moc
- g++ -g $(QTOPT) $(QTINC) $(QTLIB) $(LLDLIBS) -L$(PREFIX)/lib64 -lIvy_Qt -livy -o $@ testIvyQt.cxx
-
+ g++ -g $(QTOPT) $(QTINC) $(LLDLIBS) -o $@ testIvyQt.cxx -lIvy_Qt -livy $(QTLIB)
distclean clean :
rm -f $(LIBIVY_STATIC) $(LIBIVY_GLFW_STATIC) $(LIBIVY_SHARED) \