Another nuch of fixes/improvements to install_deps script, among which:

*New $INST variable to easily change the installation root dir of compiled libs.
*Better handling of versions for debian (DEB) too (and fix a bug for fedora (RPM) ones).
*Enhancements/fixes to compile_FOO funcs:
**Most notable, we now can force a recompile when we change something into these funcs, so user will always have latest-instructions compiled libs (else, he would have have to manually remove lib dirs under $INST...)
*General naming cleanup inside script (still wip).

Also adding boost date_time lib to linux in cmake file (why wasn't it there???).
This commit is contained in:
Bastien Montagne
2012-11-15 17:31:18 +00:00
parent 2324c80f50
commit 7d6417bbb3
2 changed files with 351 additions and 181 deletions

View File

@@ -661,7 +661,7 @@ if(UNIX AND NOT APPLE)
else()
set(Boost_USE_MULTITHREADED ON)
endif()
set(__boost_packages filesystem regex system thread)
set(__boost_packages filesystem regex system thread date_time)
if (WITH_INTERNATIONAL)
list(APPEND __boost_packages locale)
endif()