cmlib/CMLibGlobalFunctions.cmake

8 lines
208 B
CMake
Raw Normal View History

2020-03-29 05:44:48 +00:00
function(canonical_string INV OUTV)
string(TOUPPER ${INV} _arg_uppercase)
string(REGEX REPLACE "[ -]" "_" _arg_fixed ${_arg_uppercase})
set(${OUTV}
${_arg_fixed}
PARENT_SCOPE)
endfunction()