From 10a594e6fe7063a309b28a7245f5a2c0a21c10cd Mon Sep 17 00:00:00 2001 From: Brian Gianforcaro Date: Sun, 9 May 2021 02:00:27 -0700 Subject: [PATCH] Tests: Fix install of test-js and test-web When these were moved, there was a copy paste bug in the install directives of both of these binaries. --- Tests/LibJS/CMakeLists.txt | 2 +- Tests/LibWeb/CMakeLists.txt | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Tests/LibJS/CMakeLists.txt b/Tests/LibJS/CMakeLists.txt index 11280a0946..14a5c6d031 100644 --- a/Tests/LibJS/CMakeLists.txt +++ b/Tests/LibJS/CMakeLists.txt @@ -1,3 +1,3 @@ add_executable(test-js test-js.cpp) target_link_libraries(test-js LibJS LibLine LibCore) -install(TARGETS ${CMD_NAME} RUNTIME DESTINATION bin) +install(TARGETS test-js RUNTIME DESTINATION bin) diff --git a/Tests/LibWeb/CMakeLists.txt b/Tests/LibWeb/CMakeLists.txt index 7206b199f7..0a0aa280c8 100644 --- a/Tests/LibWeb/CMakeLists.txt +++ b/Tests/LibWeb/CMakeLists.txt @@ -1,3 +1,3 @@ add_executable(test-web test-web.cpp) target_link_libraries(test-web LibCore LibWeb) -install(TARGETS ${CMD_NAME} RUNTIME DESTINATION bin) +install(TARGETS test-web RUNTIME DESTINATION bin)