ROCMUtilities

Commands

rocm_join_if_set(<glue> <inout_var> [<input>...])

Join all the <input> arguments together using the <glue> string. If <inout_var> names a variable with a set value, join that string at the beginning, also using the <glue> string, and always store the result in <inout_var>.

rocm_defer(<command>)

Call <command> at the end of configure.

rocm_find_program_version(
    <PROGRAM>
    [QUIET] [REQUIRED]
    [GREATER <version>]
    [GREATER_EQUAL <version>]
    [LESS <version>]
    [LESS_EQUAL <version>]
    [EQUAL <version>]
    [OUTPUT_VARIABLE <out-var>]
)

Determine the presence and installed version of a program that accepts the --version option. Optionally check the version using any of the comparison operators (each comparison operator may only be specified once). If out-var is not specified, it defaults to <PROGRAM>_VERSION. If the program is found, <out-var> is set to the version detected. If that version satisfies all version constraints, the variable <out-var>_OK is set to TRUE, otherwise it is set to FALSE.