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:
parent
459dee1f86
commit
c273784c3e
9 changed files with 237 additions and 0 deletions
19
Userland/Applications/CertificateSettings/CMakeLists.txt
Normal file
19
Userland/Applications/CertificateSettings/CMakeLists.txt
Normal 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)
|
Loading…
Add table
Add a link
Reference in a new issue