# HG changeset patch # User Wuzzy # Date 1570657191 -3600 # Node ID 32149ab9ebda34806e264377212bcb4365ee35f7 # Parent b814252ed70794fe04fed9bb208a5829926b2a6c BuildingOnLinux: Fix CMAKE_BUILD_TYPE diff -r b814252ed707 -r 32149ab9ebda 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 }}}