Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions DFTFringe.pro
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,10 @@ qtHaveModule(printsupport): QT += printsupport

QMAKE_CXXFLAGS += -std=c++17

# Enable function/data sectioning and garbage collection by linker.
QMAKE_CXXFLAGS += -ffunction-sections -fdata-sections
QMAKE_LFLAGS += -Wl,--gc-sections

# disable qDebug() in release
CONFIG( release, debug|release ) {
message("Release build")
Expand Down
Loading