summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBertram <bertram@cegetel.net>2010-01-26 01:21:25 +0100
committerBertram <bertram@cegetel.net>2010-01-26 01:21:25 +0100
commit18e40cbae6999ded894f9303591bfe599d946232 (patch)
treebfcacd1987f31d9c4c5a56fdc215a9f20bd97d35
parent4537ab846edaf7a70cac7edd3348266ccf655bf3 (diff)
downloadmana-client-18e40cbae6999ded894f9303591bfe599d946232.tar.gz
mana-client-18e40cbae6999ded894f9303591bfe599d946232.tar.bz2
mana-client-18e40cbae6999ded894f9303591bfe599d946232.tar.xz
mana-client-18e40cbae6999ded894f9303591bfe599d946232.zip
Add compilation warnings when using cmake.
-rw-r--r--CMakeLists.txt3
-rw-r--r--src/gui/charselectdialog.cpp2
2 files changed, 4 insertions, 1 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 48e63788..2a7fc894 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -11,6 +11,9 @@ SET(CMAKE_MODULE_PATH ${CMAKE_SOURCE_DIR}/CMake/Modules)
FIND_PACKAGE(Gettext)
+# Help getting compilation warnings
+set(CMAKE_CXX_FLAGS "-g -Wall")
+
OPTION(WITH_OPENGL "Enable OpenGL support" ON)
OPTION(ENABLE_NLS "Enable building of tranlations" ON)
diff --git a/src/gui/charselectdialog.cpp b/src/gui/charselectdialog.cpp
index e9c2551f..65d87029 100644
--- a/src/gui/charselectdialog.cpp
+++ b/src/gui/charselectdialog.cpp
@@ -277,7 +277,7 @@ bool CharSelectDialog::chooseSelected()
setVisible(false);
attemptCharSelect();
-
+
return true;
}