Hey, 2010/7/19 OvermindDL1 <[email protected]>: > I am re-updating Wt again and building it, and I have been curious > about this issue I always see: > """ > [ F:/Program Files/CMake > 2.8/share/cmake-2.8/Modules/FindBoost.cmake:366 ] boost 1.44.0 is > already in the cache. For debugging messages, please clear the cache. > ** Enabling multi threading. > ** Wt::Dbo: building SQLite3 backend. > ** Wt::Dbo: could not find libpq development files, not building > Postgres backend. > ** Disabling FastCGI. > ** Enabling built-in httpd. > ** Git view example needs boost filesystem library... Skipping. > ** hangman example needs mysql++-2.x library... Skipping. > ** Wt/Qt interopability example (wtwithqt) needs Qt4 and threading > support... Skipping. > Configuring done > """ > > And here are the filesystem CMake flags (auto-configured, it found it > itself just fine): > """ > //The Boost FILESYSTEM library > Boost_FILESYSTEM_LIBRARY:FILEPATH=optimized;R:/SDKs/boost/built_head/lib/libboost_filesystem-vc80-mt-1_44.lib;debug;R:/SDKs/boost/built_head/lib/libboost_filesystem-vc80-mt-gd-1_44.lib > > //Path to a library. > Boost_FILESYSTEM_LIBRARY_DEBUG:FILEPATH=R:/SDKs/boost/built_head/lib/libboost_filesystem-vc80-mt-gd-1_44.lib > > //Path to a library. > Boost_FILESYSTEM_LIBRARY_RELEASE:FILEPATH=R:/SDKs/boost/built_head/lib/libboost_filesystem-vc80-mt-1_44.lib > """ > > And these are the correct paths, and yet it always shows the "whatever > example needs boost filesystem library... Skipping." message, why is > that? I can attach my cmake cache file if needed.
The error message is wrong... The gitview example has been disabled on Windows: IF(NOT WIN32 AND DEFINED BOOST_FS_LIB_MT) I guess the reason for this is the use of pipes to spawn and communicate with a 'git' process to read the git database... Probably this could be fixed by making this code portable, but then again, git itself is not a very common tool on windows ? In any case, I have fixed the misleading error message. Regards, koen ------------------------------------------------------------------------------ This SF.net email is sponsored by Sprint What will you do first with EVO, the first 4G phone? Visit sprint.com/first -- http://p.sf.net/sfu/sprint-com-first _______________________________________________ witty-interest mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/witty-interest
