mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-04-20 19:45:12 +00:00
Tests: Move Userland/Utilities/test-js to Tests/LibJS
This commit is contained in:
parent
b390554ad8
commit
9720ad3901
Notes:
sideshowbarker
2024-07-18 18:34:12 +09:00
Author: https://github.com/bgianfo Commit: https://github.com/SerenityOS/serenity/commit/9720ad3901d Pull-request: https://github.com/SerenityOS/serenity/pull/6912 Reviewed-by: https://github.com/linusg
5 changed files with 5 additions and 2 deletions
|
@ -127,7 +127,7 @@ if (BUILD_LAGOM)
|
|||
set_target_properties(ntpquery_lagom PROPERTIES OUTPUT_NAME ntpquery)
|
||||
target_link_libraries(ntpquery_lagom Lagom)
|
||||
|
||||
add_executable(test-js_lagom ../../Userland/Utilities/test-js.cpp)
|
||||
add_executable(test-js_lagom ../../Tests/LibJS/test-js.cpp)
|
||||
set_target_properties(test-js_lagom PROPERTIES OUTPUT_NAME test-js)
|
||||
target_link_libraries(test-js_lagom Lagom)
|
||||
target_link_libraries(test-js_lagom stdc++)
|
||||
|
|
|
@ -3,6 +3,7 @@ add_subdirectory(Kernel)
|
|||
add_subdirectory(LibC)
|
||||
add_subdirectory(LibCompress)
|
||||
add_subdirectory(LibGfx)
|
||||
add_subdirectory(LibJS)
|
||||
add_subdirectory(LibM)
|
||||
add_subdirectory(LibPthread)
|
||||
add_subdirectory(LibRegex)
|
||||
|
|
3
Tests/LibJS/CMakeLists.txt
Normal file
3
Tests/LibJS/CMakeLists.txt
Normal file
|
@ -0,0 +1,3 @@
|
|||
add_executable(test-js test-js.cpp)
|
||||
target_link_libraries(test-js LibJS LibLine LibCore)
|
||||
install(TARGETS ${CMD_NAME} RUNTIME DESTINATION bin)
|
|
@ -45,7 +45,6 @@ target_link_libraries(tar LibArchive LibCompress)
|
|||
target_link_libraries(telws LibProtocol LibLine)
|
||||
target_link_libraries(test-crypto LibCrypto LibTLS LibLine)
|
||||
target_link_libraries(test-fuzz LibCore LibGemini LibGfx LibHTTP LibIPC LibJS LibMarkdown LibShell)
|
||||
target_link_libraries(test-js LibJS LibLine LibCore)
|
||||
target_link_libraries(test-pthread LibThread)
|
||||
target_link_libraries(tt LibPthread)
|
||||
target_link_libraries(grep LibRegex)
|
||||
|
|
Loading…
Add table
Reference in a new issue