BuildingOnLinux: Fix CMAKE_BUILD_TYPE
authorWuzzy
Wed, 09 Oct 2019 22:39:51 +0100
changeset 1998 32149ab9ebda
parent 1997 b814252ed707
child 1999 789721f40796
BuildingOnLinux: Fix CMAKE_BUILD_TYPE
BuildingOnLinux.wiki
--- a/BuildingOnLinux.wiki	Wed Oct 09 19:30:52 2019 +0100
+++ b/BuildingOnLinux.wiki	Wed Oct 09 22:39:51 2019 +0100
@@ -78,13 +78,13 @@
 
 If you want to install Hedgewars *just for your user account* run
 {{{
-cmake -DCMAKE_BUILD_TYPE="DEBUG" -DCMAKE_INSTALL_PREFIX="$HOME/games" -DDATA_INSTALL_DIR="$HOME/games" -DNOSERVER=1
+cmake -DCMAKE_BUILD_TYPE="Debug" -DCMAKE_INSTALL_PREFIX="$HOME/games" -DDATA_INSTALL_DIR="$HOME/games" -DNOSERVER=1
 make install
 }}}
 If you want to install Hedgewars *system-wide* (not recommended for development builds) then run
 
 {{{
-cmake -DCMAKE_BUILD_TYPE="RELEASE" -DNOSERVER=1
+cmake -DCMAKE_BUILD_TYPE="Release" -DNOSERVER=1
 sudo make install
 }}}