From 05c75da6df689fe4e19655d17130c45aa6c086a1 Mon Sep 17 00:00:00 2001 From: Gordon Tisher Date: Fri, 8 Sep 2023 11:00:28 -0700 Subject: [PATCH] Fix cmake dependency for moved test runner (#4440) When I moved and renamed the test runner, I neglected to update the cmake target executable name. This means the runner does in fact get built the first time you run `make`, but it won't get incrementally updated if sources change. This PR updates the name of the executable so cmake can correctly track it. --- test/full-program-runner/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/full-program-runner/CMakeLists.txt b/test/full-program-runner/CMakeLists.txt index 43649ba216..5e5f4dab25 100644 --- a/test/full-program-runner/CMakeLists.txt +++ b/test/full-program-runner/CMakeLists.txt @@ -1,6 +1,6 @@ project(libponyc.tests.runner) -set(RUNNER_EXECUTABLE "runner${CMAKE_EXECUTABLE_SUFFIX}") +set(RUNNER_EXECUTABLE "full-program-runner${CMAKE_EXECUTABLE_SUFFIX}") add_custom_target(tests.runner ALL DEPENDS ${RUNNER_EXECUTABLE})