forked from jamboree/CxxFunctionBenchmark
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhighest_supp_cmake_cxx_standard.cmake
88 lines (69 loc) · 3.2 KB
/
highest_supp_cmake_cxx_standard.cmake
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
# This is free and unencumbered software released into the public domain.
# Anyone is free to copy, modify, publish, use, compile, sell, or
# distribute this software, either in source code form or as a compiled
# binary, for any purpose, commercial or non-commercial, and by any
# means.
# In jurisdictions that recognize copyright laws, the author or authors
# of this software dedicate any and all copyright interest in the
# software to the public domain. We make this dedication for the benefit
# of the public at large and to the detriment of our heirs and
# successors. We intend this dedication to be an overt act of
# relinquishment in perpetuity of all present and future rights to this
# software under copyright law.
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
# EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
# MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
# IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR
# OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
# ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
# OTHER DEALINGS IN THE SOFTWARE.
# For more information, please refer to <http://unlicense.org>
cmake_minimum_required(VERSION 3.8)
function(lines_to_list out_list_var str)
# https://cmake.org/pipermail/cmake/2007-May/014222.html
STRING(REGEX REPLACE ";" "\\\\;" str "${str}")
STRING(REGEX REPLACE "\n" ";" str "${str}")
#message("${str}")
set(${out_list_var} "${str}" PARENT_SCOPE)
endfunction()
#Usage: list_of_supp_cmake_cxx_stds(li_cxx_stds)
# message("${li_cxx_stds}") # will print e.g. 98;11;14;17
function(list_of_supp_cmake_cxx_stds out_list_var)
# scan help output of: cmake --help-property CXX_STANDARD
execute_process(COMMAND ${CMAKE_COMMAND} --help-property CXX_STANDARD
OUTPUT_VARIABLE hlp_cxx_std
ERROR_VARIABLE hlp_cxx_std
)
lines_to_list(list_hlp_cxx_std "${hlp_cxx_std}")
foreach(line IN LISTS list_hlp_cxx_std)
set(fourteen 14)
string(REGEX MATCHALL "(98|11|${fourteen})" out "${line}")
if ("${out}" STREQUAL "98;11;${fourteen}")
STRING(REGEX REPLACE ".*${fourteen}" "" remain "${line}")
string(REGEX MATCHALL "[0-9]+" match_remain "${remain}")
list(APPEND out ${match_remain})
set(${out_list_var} "${out}" PARENT_SCOPE)
break()
endif()
endforeach()
endfunction()
#Usage: highest_supp_cmake_cxx_standard(hightest_cxx_std)
# message("${hightest_cxx_std}") # will print e.g. 17
function(highest_supp_cmake_cxx_standard out_var)
list_of_supp_cmake_cxx_stds(lst_supp_cxx_stds) # extract line with 98, 11, 14, ...
file(WRITE ${CMAKE_CURRENT_BINARY_DIR}/try_compile.cpp
"int main() { return 0; }
")
list(REVERSE lst_supp_cxx_stds)
foreach(cxx_std IN LISTS lst_supp_cxx_stds)
try_compile(CAN_COMPILE_WITH_THIS_CXX_STANDARD ${CMAKE_CURRENT_BINARY_DIR} SOURCES ${CMAKE_CURRENT_BINARY_DIR}/try_compile.cpp
CXX_STANDARD ${cxx_std}
CXX_STANDARD_REQUIRED ON
CXX_EXTENSIONS OFF
)
if (CAN_COMPILE_WITH_THIS_CXX_STANDARD)
set(${out_var} ${cxx_std} PARENT_SCOPE)
break()
endif()
endforeach()
endfunction()