Skip to content

Commit 1b07cbb

Browse files
ivanpaunojacobperron
authored andcommitted
Fix ament_add_junit_tests()
Signed-off-by: Ivan Santiago Paunovic <[email protected]>
1 parent 0867e37 commit 1b07cbb

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

rcljava_common/cmake/Modules/JavaExtra.cmake

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -106,11 +106,11 @@ function(ament_add_junit_tests TARGET_NAME)
106106
set(${TARGET_NAME}_jar_dependencies "${JUNIT_JAR}${SEPARATOR}${HAMCREST_JAR}")
107107

108108
add_jar("${TARGET_NAME}_jar"
109-
"${_source_files}"
109+
SOURCES "${_source_files}"
110110
OUTPUT_NAME
111111
"${TARGET_NAME}"
112112
INCLUDE_JARS
113-
"${ARG_INCLUDE_JARS}"
113+
${ARG_INCLUDE_JARS}
114114
"${JUNIT_JAR}"
115115
"${HAMCREST_JAR}"
116116
)

0 commit comments

Comments
 (0)