summaryrefslogtreecommitdiff
path: root/cmake/Options.cmake
diff options
context:
space:
mode:
authorglx22 <glx@openttd.org>2020-06-11 21:57:14 +0200
committerglx22 <glx22@users.noreply.github.com>2020-07-02 21:18:14 +0200
commit97592c409378c2d353a1cdd6b50f80b7e81b67c2 (patch)
tree73adb848809067153a3eaae989f8f79c1dcc349d /cmake/Options.cmake
parent53de5b5c55f22c3f37db44c4e5ca2c609cbf7b27 (diff)
downloadopenttd-97592c409378c2d353a1cdd6b50f80b7e81b67c2.tar.xz
Add: [CMake] Allow renaming of openttd binary
Diffstat (limited to 'cmake/Options.cmake')
-rw-r--r--cmake/Options.cmake6
1 files changed, 3 insertions, 3 deletions
diff --git a/cmake/Options.cmake b/cmake/Options.cmake
index 4210c5b49..4f2404b2d 100644
--- a/cmake/Options.cmake
+++ b/cmake/Options.cmake
@@ -14,9 +14,9 @@ function(set_directory_options)
set(DEFAULT_SHARED_DIR "(not set)")
set(DEFAULT_GLOBAL_DIR "(not set)")
elseif (UNIX)
- set(DEFAULT_PERSONAL_DIR ".openttd")
+ set(DEFAULT_PERSONAL_DIR ".${BINARY_NAME}")
set(DEFAULT_SHARED_DIR "(not set)")
- set(DEFAULT_GLOBAL_DIR "${CMAKE_INSTALL_FULL_DATADIR}/openttd")
+ set(DEFAULT_GLOBAL_DIR "${CMAKE_INSTALL_FULL_DATADIR}/${BINARY_NAME}")
else ()
message(FATAL_ERROR "Unknown OS found; please consider creating a Pull Request to add support for this OS.")
endif ()
@@ -51,7 +51,7 @@ function(set_options)
option(OPTION_FORCE_COLORED_OUTPUT "Always produce ANSI-colored output (GNU/Clang only)." OFF)
option(OPTION_DEDICATED "Build dedicated server only (no GUI)" OFF)
- option(OPTION_INSTALL_FHS "Install with Filesstem Hierarchy Standard folders" ${DEFAULT_OPTION_INSTALL_FHS})
+ option(OPTION_INSTALL_FHS "Install with Filesystem Hierarchy Standard folders" ${DEFAULT_OPTION_INSTALL_FHS})
option(OPTION_USE_ASSERTS "Use assertions; leave enabled for nightlies, betas, and RCs" ON)
option(OPTION_USE_THREADS "Use threads" ON)
option(OPTION_USE_NSIS "Use NSIS to create windows installer; enable only for stable releases" OFF)