mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-22 07:30:19 +00:00
Lagom: Add targets for lzcat
, xzcat
and tar
This commit is contained in:
parent
726963edc7
commit
afa158bf99
Notes:
sideshowbarker
2024-07-16 23:05:02 +09:00
Author: https://github.com/timschumi Commit: https://github.com/SerenityOS/serenity/commit/afa158bf99 Pull-request: https://github.com/SerenityOS/serenity/pull/18082 Reviewed-by: https://github.com/kleinesfilmroellchen ✅
1 changed files with 9 additions and 0 deletions
|
@ -533,6 +533,9 @@ if (BUILD_LAGOM)
|
|||
-sENVIRONMENT=web)
|
||||
endif()
|
||||
|
||||
add_executable(lzcat ../../Userland/Utilities/lzcat.cpp)
|
||||
target_link_libraries(lzcat LibCompress LibCore LibMain)
|
||||
|
||||
add_executable(markdown-check ../../Userland/Utilities/markdown-check.cpp)
|
||||
target_link_libraries(markdown-check LibFileSystem LibMarkdown LibMain)
|
||||
|
||||
|
@ -544,6 +547,9 @@ if (BUILD_LAGOM)
|
|||
add_executable(sql ../../Userland/Utilities/sql.cpp)
|
||||
target_link_libraries(sql LibCore LibFileSystem LibIPC LibLine LibMain LibSQL)
|
||||
|
||||
add_executable(tar ../../Userland/Utilities/tar.cpp)
|
||||
target_link_libraries(tar LibArchive LibCompress LibCore LibFileSystem LibMain)
|
||||
|
||||
add_executable(test262-runner ../../Tests/LibJS/test262-runner.cpp)
|
||||
target_link_libraries(test262-runner LibJS LibCore LibFileSystem)
|
||||
|
||||
|
@ -569,6 +575,9 @@ if (BUILD_LAGOM)
|
|||
add_executable(xml ../../Userland/Utilities/xml.cpp)
|
||||
target_link_libraries(xml LibCore LibXML LibMain)
|
||||
|
||||
add_executable(xzcat ../../Userland/Utilities/xzcat.cpp)
|
||||
target_link_libraries(xzcat LibCompress LibCore LibMain)
|
||||
|
||||
enable_testing()
|
||||
# LibTest
|
||||
file(GLOB LIBTEST_SOURCES CONFIGURE_DEPENDS "../../Userland/Libraries/LibTest/*.cpp")
|
||||
|
|
Loading…
Reference in a new issue