On 20.01.08 15:38:44, Rodolfo Lima wrote: > Andreas Pakulat escreveu: > > The reason I did that was to simplify the module code. > > I see, but this variable is only used in a if clause, so instead of writing > > IF( Boost_USE_NONMULTITHREADED ) > SET (_boost_MULTITHREADED "") > ENDIF( Boost_USE_NONMULTITHREADED ) > > you could write > > IF(NOT Boost_USE_MULTITHREADED ) > SET (_boost_MULTITHREADED "") > ENDIF(NOT Boost_USE_MULTITHREADED ) > > with the same semantics of the former clause, isn't it?
No, because the default should be to use the multithreaded version. Actually I currently don't see a way to do this in CMake, without requiring the user to set Boost_USE_MULTITHREAD always. Andreas -- A visit to a fresh place will bring strange work. _______________________________________________ CMake mailing list [email protected] http://www.cmake.org/mailman/listinfo/cmake
