Skip to content

Commit be23227

Browse files
committed
Configure boost library for windows
1 parent 2be5978 commit be23227

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

qt/qt.pro

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,14 @@ FORMS += main_window.ui \
8181
QMAKE_CXXFLAGS += -std=c++11 -Wextra -Werror
8282
mingw:QMAKE_CXXFLAGS += -mno-ms-bitfields
8383

84-
LIBS += -lboost_system
84+
unix: {
85+
LIBS += -lboost_system
86+
}
87+
88+
win32: {
89+
INCLUDEPATH += C:/boost/include/boost-1_75
90+
LIBS += -LC:/boost/lib -lws2_32 -lboost_system-mgw8-mt-x64-1_75
91+
}
8592

8693
DISTFILES += \
8794
nando_parallel_chip_db.csv \

0 commit comments

Comments
 (0)