From a4564ffabfe82e8b898f7452f309c0b672727678 Mon Sep 17 00:00:00 2001 From: Matthew Fernandez Date: Tue, 1 Feb 2022 15:10:18 +1100 Subject: [PATCH] CMake: [nfc] add a leading comment to a macro MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Squashes a “[C0111] Missing docstring on function or macro declaration” `cmake-lint` warning. --- tests/CMakeLists.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/CMakeLists.txt b/tests/CMakeLists.txt index 3a45ce03d..6da9e513f 100644 --- a/tests/CMakeLists.txt +++ b/tests/CMakeLists.txt @@ -40,6 +40,7 @@ target_link_libraries(test_common PUBLIC gvc++ ) +# common steps for creating a test case macro(CREATE_TEST testname) add_executable(test_${testname} test_${testname}.cpp) set_target_properties(test_${testname} PROPERTIES CXX_STANDARD 20) -- 2.40.0