1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27
|
Change to Debian boost version and remove unneccessary libraries
Index: liborigin2-20110117/liborigin2.pro
===================================================================
--- liborigin2-20110117.orig/liborigin2.pro 2011-02-06 09:16:37.000000000 -0500
+++ liborigin2-20110117/liborigin2.pro 2015-08-23 19:56:15.850774338 -0400
@@ -6,16 +6,19 @@
OBJECTS_DIR = ./tmp
DESTDIR = ./
+QT -= gui core
+LIBS -= -lQtGui -lQtCore
# Path to the folder where the header files of the BOOST C++ libraries are installed
-INCLUDEPATH += ../boost
+#INCLUDEPATH += ../boost
# link statically against a copy of BOOST C++ libraries
#LIBS += ../boost/lib/libboost_date_time.a
#LIBS += ../boost/lib/libboost_thread.a
# or dynamically against a system-wide installation
LIBS += -lboost_date_time
-LIBS += -lboost_thread
+LIBS += -lboost_system
+#LIBS += -lboost_thread
HEADERS += endianfstream.hh \
logging.hpp \
|