blob: ddc5b7b5d3606473760b27e4915fe2db80547c33 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
# This file is copyright by Shlomi Fish, 2016.
#
# This file is licensed under the MIT/X11 license:
# https://opensource.org/licenses/mit-license.php
macro (canonicalize_flags_var in_val out_var)
string(REPLACE " " ";" _c "${in_val}")
list(REMOVE_DUPLICATES _c)
list(SORT _c)
string(REPLACE ";" " " "${out_var}" "${_c}")
endmacro()
|