Trying to migrate a legecy codebase whose buildsystem jam to CMake.
to divide and conquer it , checking whether there and provisions to Is there a provision to invoke jamfile and jamrule from cmake and vice versa .
one option would be add a custom target invoking jam program. is it also possible to use a jamrule defined in a jamfile / .jam file
Disclaimer: There are several jam flavors. The answer applies to Perforce Jam and some of its compatible descendants.
As you've already mentioned yourself, invoking jam from cmake can be done with
add_custom_target
/add_custom_command
, so that answers the first part of your question.Since jam rules (or rather actions) can invoke arbitrary commands, the other direction is certainly possible as well.
cmake
itself is usually not the tool you invoke for building a target. So, depending on your generator, you would actually want to callmake
,ninja
,...In your question you're not very concrete regarding you migration approach. Assuming you start out with a jam build system with multiple library and executable targets that span a dependency graph, and you want to migrate the build system component by component. If you start bottom up with a library without dependencies (whose sources hopefully live in their own subdirectory), you would replace the rule invocation that builds the library -- e.g.
Library libfoo : foo.c bar.c ;
-- by a rule invocation that calls e.g.make
-- likeMake libfoo$(SUFLIB) ;
. The rule could be defined (e.g. inJamrules
) as:If you need other information from jam to be passed to cmake (like the build type or certain build options), define respective on-target variables (like
SOURCE_DIR
in the example) to have them available in the actions.