mirror of
https://github.com/RGBCube/serenity
synced 2025-07-28 01:37:35 +00:00
Utilities: Add basic Package manager skeleton utility
This commit is contained in:
parent
22737b70bc
commit
ccaa423372
9 changed files with 473 additions and 0 deletions
15
Userland/Utilities/pkg/CMakeLists.txt
Normal file
15
Userland/Utilities/pkg/CMakeLists.txt
Normal file
|
@ -0,0 +1,15 @@
|
|||
serenity_component(
|
||||
PackageManager
|
||||
RECOMMENDED
|
||||
TARGETS PackageManager
|
||||
DEPENDS FileSystemAccessServer
|
||||
)
|
||||
|
||||
set(SOURCES
|
||||
AvailablePort.cpp
|
||||
InstalledPort.cpp
|
||||
main.cpp
|
||||
)
|
||||
|
||||
serenity_app(PackageManager ICON app-assistant)
|
||||
target_link_libraries(PackageManager PRIVATE LibCore LibMain LibFileSystem LibProtocol LibHTTP LibMarkdown LibShell)
|
Loading…
Add table
Add a link
Reference in a new issue