This is an automated email from the ASF dual-hosted git repository.

cmcfarlen pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/trafficserver.git


The following commit(s) were added to refs/heads/master by this push:
     new ed6c9e4904 Compile all sources passed to the add_autest_plugin 
function (#10529)
ed6c9e4904 is described below

commit ed6c9e49048cf02a91697cf55dd2491bc788e15a
Author: Chris McFarlen <[email protected]>
AuthorDate: Tue Sep 26 17:51:59 2023 -0500

    Compile all sources passed to the add_autest_plugin function (#10529)
    
    Co-authored-by: Chris McFarlen <[email protected]>
---
 tests/CMakeLists.txt | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/tests/CMakeLists.txt b/tests/CMakeLists.txt
index 2959346f50..467cb0019d 100644
--- a/tests/CMakeLists.txt
+++ b/tests/CMakeLists.txt
@@ -15,8 +15,8 @@
 #
 #######################
 
-function(ADD_AUTEST_PLUGIN _NAME _SOURCES)
-    add_library(${_NAME} MODULE ${_SOURCES})
+function(ADD_AUTEST_PLUGIN _NAME)
+    add_library(${_NAME} MODULE ${ARGN})
     set_target_properties(${_NAME} PROPERTIES
         LIBRARY_OUTPUT_DIRECTORY "${CMAKE_CURRENT_BINARY_DIR}/.libs"
         PREFIX ""

Reply via email to