mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-22 07:30:19 +00:00
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:
parent
5007d7bb38
commit
10a594e6fe
Notes:
sideshowbarker
2024-07-18 18:27:59 +09:00
Author: https://github.com/bgianfo Commit: https://github.com/SerenityOS/serenity/commit/10a594e6fe7 Pull-request: https://github.com/SerenityOS/serenity/pull/6982
2 changed files with 2 additions and 2 deletions
|
@ -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)
|
||||
|
|
|
@ -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)
|
||||
|
|
Loading…
Reference in a new issue