diff options
author | Jan200101 <sentrycraft123@gmail.com> | 2022-06-14 09:51:21 +0200 |
---|---|---|
committer | Jan200101 <sentrycraft123@gmail.com> | 2022-06-14 09:51:21 +0200 |
commit | a751d28096598649eeb94ea35f17f211c06193b0 (patch) | |
tree | 35a468e8b25736e8a33088fdf4a05401ea667a9e | |
parent | 4c47f2c9fc1cfbc7cadbf4e79bd8e28482240af2 (diff) | |
download | OFQT-a751d28096598649eeb94ea35f17f211c06193b0.tar.gz OFQT-a751d28096598649eeb94ea35f17f211c06193b0.zip |
disable frontends by default
-rw-r--r-- | CMakeLists.txt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index de44080..bdf7996 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -11,8 +11,8 @@ endif() project(OFQT VERSION 0.1.0 LANGUAGES C) -option(BUILD_CLI "Build the CLI client" ON) -option(BUILD_QT "Build the Qt GUI client" ON) +option(BUILD_CLI "Build the CLI client" OFF) +option(BUILD_QT "Build the Qt GUI client" OFF) set(TOAST_DEFAULT_REMOTE "http://toast.openfortress.fun/toast" CACHE STRING "Default Mirror to get OpenFortress files from") |