mirror of
https://github.com/fergalmoran/ladybird.git
synced 2025-12-22 09:19:03 +00:00
This commit adds a new application named CertificateSettings that houses our Cert Store. It should be expanded in the future.
20 lines
424 B
CMake
20 lines
424 B
CMake
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)
|