Updated CMakeLists.txt:

- INSTALL_AFTER_BUILD is now set to OFF by default
This commit is contained in:
Patrix
2021-12-18 15:16:07 +01:00
parent e221d9c80f
commit 100e74c347

View File

@@ -2,7 +2,7 @@ cmake_minimum_required(VERSION 3.17)
project(SqModule) 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(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.") set(SERVER_PATH "" CACHE PATH "This option specifies the server location. It's only used for the installation step.")