From 809f16567afcade2ef05aeb7851b65f4d446a237 Mon Sep 17 00:00:00 2001 From: Chris McFarlen Date: Wed, 20 Sep 2023 17:57:51 -0500 Subject: [PATCH] cmake: bigobj subdir has executables, not plugins --- tests/gold_tests/bigobj/CMakeLists.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/gold_tests/bigobj/CMakeLists.txt b/tests/gold_tests/bigobj/CMakeLists.txt index ba725bf4a71..b56709f8538 100644 --- a/tests/gold_tests/bigobj/CMakeLists.txt +++ b/tests/gold_tests/bigobj/CMakeLists.txt @@ -15,5 +15,5 @@ # ####################### -add_autest_plugin(check_ramp check_ramp.c) -add_autest_plugin(push_request push_request.c) +add_executable(check_ramp check_ramp.c) +add_executable(push_request push_request.c)