diff options
author | meta <s@w23.at> | 2011-01-21 21:06:50 (GMT) |
---|---|---|
committer | meta <s@w23.at> | 2011-01-21 21:06:50 (GMT) |
commit | 94748bb8d2cb9943f2cfb0accb71fd64f73584fc (patch) | |
tree | 04e43b53e8800fe7d6fc0ec95b693273f347e3f7 /boost.pri | |
parent | 929e4340e2307620d56980a45d480a12eb60876d (diff) |
update qmake file for visual C++ builds
Diffstat (limited to 'boost.pri')
-rw-r--r-- | boost.pri | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/boost.pri b/boost.pri new file mode 100644 index 0000000..8907b2d --- /dev/null +++ b/boost.pri @@ -0,0 +1,11 @@ +boost {
+ isEmpty(DEPLOYDIR) {
+ # Optionally specify location of boost using the
+ # BOOSTDIR env. variable
+ BOOST_DIR = $$(BOOSTDIR)
+ !isEmpty(BOOST_DIR) {
+ INCLUDEPATH += $$BOOST_DIR
+ message("boost location: $$BOOST_DIR")
+ }
+ }
+}
|