Skip to content

Commit

Permalink
libdeng2: Enable strict warnings
Browse files Browse the repository at this point in the history
All compiler warnings are now enabled for libdeng2.
  • Loading branch information
skyjake committed Oct 3, 2011
1 parent 5d73c2c commit d1c5194
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion doomsday/libdeng2/libdeng2.pro
Expand Up @@ -10,7 +10,6 @@ include(../config.pri)

# Using Qt.
QT += core network
include(../dep_qt.pri)

DEFINES += __DENG2__

Expand All @@ -19,6 +18,11 @@ win32 {
TARGET_EXT = .dll
}

*-g++ {
# Enable strict warnings.
QMAKE_CXXFLAGS_WARN_ON *= -Wall -Wextra -pedantic
}

INCLUDEPATH += include

# Source Files ---------------------------------------------------------------
Expand Down

0 comments on commit d1c5194

Please sign in to comment.