
4 Nov
2009
4 Nov
'09
2:11 p.m.
oops, forgot:
I'm currently using: bjam -sHAVE_ICU=1 -sEXPAT_INCLUDE=/usr -sEXPAT_LIBPATH=/usr/lib64 -- layout=tagged threading=single,multi stage Can I set these options with cmake, and if so, how?
-sHAVE_ICU: unnecessary (manually settable if your install is odd) -sEXPAT_INCLUDE: same as above layout=tagged: -mt-d and so forth are default. if you mean os and compiler version mangling, that's now an option WINMANGLE_LIBNAMES that is ON by default on windows, OFF by default on unix. threading=single,multi: These are default, see ENABLE_ options for more stage: this is default, libs are in $BUILDDIR/lib (BUILDDIR is where you run cmake, i.e. the toplevel dir of the generated makefile hierarchy) -t