diff options
author | Brad Pitcher <bradpitcher@gmail.com> | 2011-10-05 06:58:34 (GMT) |
---|---|---|
committer | Brad Pitcher <bradpitcher@gmail.com> | 2011-10-05 06:58:34 (GMT) |
commit | 45060878b56070fa12e6f0bb85bad1f6e1687b71 (patch) | |
tree | df0a0ad98167cc1e1a855282be2798bcf25c9589 /boost.pri | |
parent | 0407d287b035e4f3aabf718f290eb31365fad26e (diff) |
enable compiling with mingw-cross-env
Diffstat (limited to 'boost.pri')
-rw-r--r-- | boost.pri | 13 |
1 files changed, 9 insertions, 4 deletions
@@ -10,9 +10,14 @@ boost { } } - win32 { - LIBS += -llibboost_thread-vc90-mt-s-1_46_1 -llibboost_program_options-vc90-mt-s-1_46_1 - } else { - LIBS += -lboost_thread -lboost_program_options + CONFIG(mingw-cross-env) { + LIBS += -lboost_thread_win32-mt -lboost_program_options-mt + } + else { + win32 { + LIBS += -llibboost_thread-vc90-mt-s-1_46_1 -llibboost_program_options-vc90-mt-s-1_46_1 + } else { + LIBS += -lboost_thread -lboost_program_options + } } } |