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
|
Change to Debian boost version and remove unnecessary libraries
--- a/liborigin2.pro
+++ b/liborigin2.pro
@@ -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 \
|