diff options
author | Marius Kintel <marius@kintel.net> | 2011-04-06 13:04:08 (GMT) |
---|---|---|
committer | Marius Kintel <marius@kintel.net> | 2011-04-06 13:04:08 (GMT) |
commit | 3c77e2a8b6fe76d57375ab4fadc5fb1c88c4b269 (patch) | |
tree | 5a348bb876a9be91897ab6f804883d7fa94e248e /boost.pri | |
parent | 32abad175da311264993a49c9f312a6eed191d35 (diff) |
Small steps towards making this buildable on VS2008
Diffstat (limited to 'boost.pri')
-rw-r--r-- | boost.pri | 5 |
1 files changed, 2 insertions, 3 deletions
@@ -6,13 +6,12 @@ boost { !isEmpty(BOOST_DIR) {
INCLUDEPATH += $$BOOST_DIR
message("boost location: $$BOOST_DIR")
- win32:LIBS += -L$$BOOST_DIR/libs/program_options/build/msvc-10.0/release/link-static/threading-multi
- win32:LIBS += -L$$BOOST_DIR/libs/thread/build/msvc-10.0/release/link-static/threading-multi
+ win32:LIBS += -L$$BOOST_DIR/lib
}
}
win32 {
- LIBS += -llibboost_thread-vc100-mt-1_45 -llibboost_program_options-vc100-mt-1_45
+ 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
}
|