From 100e74c347a85a4b3b9af1e9c54d0c9806fa5a92 Mon Sep 17 00:00:00 2001 From: Patrix Date: Sat, 18 Dec 2021 15:16:07 +0100 Subject: [PATCH] Updated CMakeLists.txt: - INSTALL_AFTER_BUILD is now set to OFF by default --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 27f7a6b..754d04e 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -2,7 +2,7 @@ cmake_minimum_required(VERSION 3.17) project(SqModule) -option(INSTALL_AFTER_BUILD "Run cmake --install separately for every target after each build. By default this option is set to OFF" ON) +option(INSTALL_AFTER_BUILD "Run cmake --install separately for every target after each build. By default this option is set to OFF" OFF) set(GAME_PATH "" CACHE PATH "This option specifies the game location. It's only used for the installation step.") set(SERVER_PATH "" CACHE PATH "This option specifies the server location. It's only used for the installation step.")