diff --git a/Tests/LibJS/CMakeLists.txt b/Tests/LibJS/CMakeLists.txt index 11280a09461..14a5c6d0316 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 7206b199f7d..0a0aa280c8c 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)