From aff3e6461963d35a039b31f5caaaeae2ef122c76 Mon Sep 17 00:00:00 2001 From: Roland Conybeare Date: Wed, 26 Jun 2024 01:36:22 -0400 Subject: [PATCH] xo-cmake: bugfix: missed invocation of xo_toplevel_default_config() --- cmake/xo_macros/xo_cxx.cmake | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/cmake/xo_macros/xo_cxx.cmake b/cmake/xo_macros/xo_cxx.cmake index 169941c7..06e5e8c3 100644 --- a/cmake/xo_macros/xo_cxx.cmake +++ b/cmake/xo_macros/xo_cxx.cmake @@ -186,12 +186,14 @@ macro(xo_toplevel_asan_config2) endmacro() # support for +# cmake -DCMAKE_BUILD_TYPE= # cmake -DCMAKE_BUILD_TYPE=release # cmake -DCMAKE_BUILD_TYPE=debug -# cmake -DCMAKE_BUILD_TYPE+asan +# cmake -DCMAKE_BUILD_TYPE=asan # cmake -DCMAKE_BUILD_TYPE=coverage # macro(xo_toplevel_config2) + xo_toplevel_default_config2() xo_toplevel_release_config2() xo_toplevel_debug_config2() xo_toplevel_asan_config2()