mirror of
https://github.com/RGBCube/serenity
synced 2025-07-25 23:17:45 +00:00
Lagom: Add targets for lzcat
, xzcat
and tar
This commit is contained in:
parent
726963edc7
commit
afa158bf99
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…
Add table
Add a link
Reference in a new issue