Skip to content

Commit

Permalink
Merge PR #3370: Fix Boost library link for MSYS2
Browse files Browse the repository at this point in the history
  • Loading branch information
davidebeatrici committed Jul 13, 2018
2 parents 68cfcc4 + 6ac6ae8 commit 5039340
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion src/mumble/mumble.pro
Original file line number Diff line number Diff line change
Expand Up @@ -410,7 +410,14 @@ win32 {
LIBS *= -llibboost_system-mt -llibboost_thread-mt
}
win32-g++ {
LIBS *= -lboost_system-mt -lboost_thread_win32-mt
LIBS *= -lboost_system-mt

# The library has a different name in MXE
contains(QMAKE_HOST.os, Linux) {
LIBS *= -lboost_thread_win32-mt
} else {
LIBS *= -lboost_thread-mt
}
}

LIBS *= -ldelayimp -delayload:shell32.dll
Expand Down

0 comments on commit 5039340

Please sign in to comment.