cmlib/CMLibGlobalFunctions.cmake

6 lines
196 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)
2020-03-29 05:44:48 +00:00
endfunction()