diff options
author | Brian Gianforcaro <bgianf@serenityos.org> | 2021-05-09 02:00:27 -0700 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2021-05-09 11:04:38 +0200 |
commit | 10a594e6fe7063a309b28a7245f5a2c0a21c10cd (patch) | |
tree | fdf0bb4abbca37defa1a53cdac86ca28d42f8999 /Tests/LibWeb | |
parent | 5007d7bb382231be960152b674b8246dbf05590f (diff) | |
download | serenity-10a594e6fe7063a309b28a7245f5a2c0a21c10cd.zip |
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.
Diffstat (limited to 'Tests/LibWeb')
-rw-r--r-- | Tests/LibWeb/CMakeLists.txt | 2 |
1 files changed, 1 insertions, 1 deletions
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) |