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.
This commit is contained in:
Brian Gianforcaro 2021-05-09 02:00:27 -07:00 committed by Andreas Kling
parent 5007d7bb38
commit 10a594e6fe
Notes: sideshowbarker 2024-07-18 18:27:59 +09:00
2 changed files with 2 additions and 2 deletions

View File

@ -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)

View File

@ -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)