1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 07:37:46 +00:00

LibJS: Import the libjs-test262-runner from linusg/libjs-test262

For now this is a lagom only application as it is not compatible with
serenity in its current state.

The only change is that it is released under a different license with
permission from all the authors.
This commit is contained in:
davidot 2022-09-11 09:14:32 +02:00 committed by Linus Groh
parent b6094b7a3d
commit 7948897688
2 changed files with 793 additions and 0 deletions

View file

@ -621,6 +621,10 @@ if (BUILD_LAGOM)
set_target_properties(shell_lagom PROPERTIES OUTPUT_NAME shell)
target_link_libraries(shell_lagom LibCore LibShell LibMain)
add_executable(test262-runner_lagom ../../Tests/LibJS/test262-runner.cpp)
set_target_properties(test262-runner_lagom PROPERTIES OUTPUT_NAME test262-runner)
target_link_libraries(test262-runner_lagom LibJS LibCore)
add_executable(wasm_lagom ../../Userland/Utilities/wasm.cpp)
set_target_properties(wasm_lagom PROPERTIES OUTPUT_NAME wasm)
target_link_libraries(wasm_lagom LibCore LibWasm LibLine LibMain)