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

sql: Support running the sql REPL on Lagom

This commit is contained in:
Timothy Flynn 2022-12-09 17:09:08 -05:00 committed by Tim Flynn
parent 4e5f56f737
commit 78353ec184
2 changed files with 25 additions and 8 deletions

View file

@ -492,6 +492,9 @@ if (BUILD_LAGOM)
target_link_libraries(ntpquery LibCore LibMain)
endif()
add_executable(sql ../../Userland/Utilities/sql.cpp)
target_link_libraries(sql LibCore LibIPC LibLine LibMain LibSQL)
add_executable(test262-runner ../../Tests/LibJS/test262-runner.cpp)
target_link_libraries(test262-runner LibJS LibCore)