1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-29 04:07:34 +00:00

CertificateSettings: Create basic Cert Store application

This commit adds a new application named CertificateSettings that
houses our Cert Store. It should be expanded in the future.
This commit is contained in:
Fabian Dellwing 2023-03-27 20:04:24 +02:00 committed by Andrew Kaster
parent 459dee1f86
commit c273784c3e
9 changed files with 237 additions and 0 deletions

View file

@ -0,0 +1,19 @@
serenity_component(
CertificateSettings
REQUIRED
TARGETS CertificateSettings
)
compile_gml(CertificateStore.gml CertificateStoreGML.h certificate_store_gml)
set(SOURCES
CertificateStore.cpp
main.cpp
)
set(GENERATED_SOURCES
CertificateStoreGML.h
)
serenity_app(CertificateSettings ICON certificate)
target_link_libraries(CertificateSettings PRIVATE LibCore LibCrypto LibGfx LibGUI LibMain LibTLS)