From 6a4f0befd4eb01b5306034c1d6ef313e25f7c0bf Mon Sep 17 00:00:00 2001 From: pajlada Date: Sun, 29 Jan 2023 12:12:49 +0100 Subject: [PATCH] Disable translation building (#4336) --- CMakeLists.txt | 2 ++ 1 file changed, 2 insertions(+) diff --git a/CMakeLists.txt b/CMakeLists.txt index 9409c2cec..b36e0eb7b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -19,6 +19,8 @@ option(BUILD_WITH_QTKEYCHAIN "Build Chatterino with support for your system key option(USE_PRECOMPILED_HEADERS "Use precompiled headers" ON) option(BUILD_WITH_QT6 "Use Qt6 instead of default Qt5" OFF) option(CHATTERINO_GENERATE_COVERAGE "Generate coverage files" OFF) +# We don't use translations, and we don't want qtkeychain to build translations +option(BUILD_TRANSLATIONS "" OFF) option(BUILD_SHARED_LIBS "" OFF) option(CHATTERINO_LTO "Enable LTO for all targets" OFF)