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 --- CMakeLists.txt | 3 +++ 1 file changed, 3 insertions(+) (limited to 'CMakeLists.txt') diff --git a/CMakeLists.txt b/CMakeLists.txt index 84c4a180..9356f326 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -289,7 +289,10 @@ add_subdirectory(buildconfig) if(MultiMC_EMBED_SECRETS) add_subdirectory(secrets) +else() + add_subdirectory(notsecrets) endif() + # NOTE: this must always be last to appease the CMake deity of quirky install command evaluation order. add_subdirectory(launcher) -- cgit