Skip to content

Commit

Permalink
Bugfix: use correctly prefixed variable name
Browse files Browse the repository at this point in the history
  • Loading branch information
PhilMiller committed Dec 28, 2023
1 parent be92d19 commit 6b72c93
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -103,8 +103,8 @@ function(ngen_add_test TESTNAME)
target_link_libraries(${TESTNAME} PRIVATE gtest gtest_main ${NGEN_TEST_LIBRARIES})
set_target_properties(${TESTNAME} PROPERTIES FOLDER test)

if(DEPENDS)
add_dependencies(${TESTNAME} ${DEPENDS})
if(NGEN_TEST_DEPENDS)
add_dependencies(${TESTNAME} ${NGEN_TEST_DEPENDS})
endif()

gtest_discover_tests(
Expand Down

0 comments on commit 6b72c93

Please sign in to comment.