From 878c4fb8103bc866e5368fbb7287e94cca190dff Mon Sep 17 00:00:00 2001 From: Petr Mrázek Date: Sun, 5 Sep 2021 18:23:49 +0200 Subject: NOISSUE Provide dummy implementation for the secrets library --- notsecrets/CMakeLists.txt | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 notsecrets/CMakeLists.txt (limited to 'notsecrets/CMakeLists.txt') diff --git a/notsecrets/CMakeLists.txt b/notsecrets/CMakeLists.txt new file mode 100644 index 00000000..f27aeb70 --- /dev/null +++ b/notsecrets/CMakeLists.txt @@ -0,0 +1,4 @@ +add_library(secrets STATIC Secrets.cpp Secrets.h) +target_link_libraries(secrets Qt5::Core) +target_compile_definitions(secrets PUBLIC -DEMBED_SECRETS) +target_include_directories(secrets PUBLIC .) -- cgit