diff options
Diffstat (limited to 'Tests')
-rw-r--r-- | Tests/LibJS/CMakeLists.txt | 2 | ||||
-rw-r--r-- | Tests/LibWasm/CMakeLists.txt | 2 | ||||
-rw-r--r-- | Tests/LibWeb/CMakeLists.txt | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/Tests/LibJS/CMakeLists.txt b/Tests/LibJS/CMakeLists.txt index 8d425f8650..7bd2772c9f 100644 --- a/Tests/LibJS/CMakeLists.txt +++ b/Tests/LibJS/CMakeLists.txt @@ -1,2 +1,2 @@ serenity_testjs_test(test-js.cpp test-js) -install(TARGETS test-js RUNTIME DESTINATION bin) +install(TARGETS test-js RUNTIME DESTINATION bin OPTIONAL) diff --git a/Tests/LibWasm/CMakeLists.txt b/Tests/LibWasm/CMakeLists.txt index 0f16647d2e..f3b3f86666 100644 --- a/Tests/LibWasm/CMakeLists.txt +++ b/Tests/LibWasm/CMakeLists.txt @@ -1,2 +1,2 @@ serenity_testjs_test(test-wasm.cpp test-wasm LIBS LibWasm) -install(TARGETS test-wasm RUNTIME DESTINATION bin) +install(TARGETS test-wasm RUNTIME DESTINATION bin OPTIONAL) diff --git a/Tests/LibWeb/CMakeLists.txt b/Tests/LibWeb/CMakeLists.txt index 4ddba42a05..87eabd8e16 100644 --- a/Tests/LibWeb/CMakeLists.txt +++ b/Tests/LibWeb/CMakeLists.txt @@ -1,2 +1,2 @@ serenity_testjs_test(test-web.cpp test-web LIBS LibWeb) -install(TARGETS test-web RUNTIME DESTINATION bin) +install(TARGETS test-web RUNTIME DESTINATION bin OPTIONAL) |