Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Support boost versions from 1.33 to 1.50 on windows
  • Loading branch information
RedBeard0531 committed Dec 2, 2009
1 parent 36e01bf commit 888cfe8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions SConstruct
Expand Up @@ -451,8 +451,8 @@ elif "win32" == os.sys.platform:
if force64:
release = True

for bv in reversed( range(3,10) ):
boostDir = "C:/Program Files/Boost/boost_1_3" + str(bv) + "_0"
for bv in reversed( range(33,50) ):
boostDir = "C:/Program Files/Boost/boost_1_" + str(bv) + "_0"
if os.path.exists( boostDir ):
break

Expand Down

0 comments on commit 888cfe8

Please sign in to comment.