diff options
Diffstat (limited to 'tmake/lib/unix/generic.t')
-rwxr-xr-x | tmake/lib/unix/generic.t | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/tmake/lib/unix/generic.t b/tmake/lib/unix/generic.t index 53f4e0a..04f7b97 100755 --- a/tmake/lib/unix/generic.t +++ b/tmake/lib/unix/generic.t @@ -47,7 +47,11 @@ if ( !((Project("TARGET") eq "qt") && Project("TMAKE_LIB_FLAG")) ) { Project("TMAKE_LIBDIR_QT") && Project('TMAKE_LIBS *= -L$$TMAKE_LIBDIR_QT'); - Project('TMAKE_LIBS *= $$TMAKE_LIBS_QT'); + if ( Config("thread") ) { + Project('TMAKE_LIBS *= $$TMAKE_LIBS_QT_MT'); + } else { + Project('TMAKE_LIBS *= $$TMAKE_LIBS_QT'); + } } } if ( Config("opengl") ) { |