Sergey Creator
Sergey Creator

Reputation: 41

disable warning qt project with MSVC2015_64bit compiler

I have warning c4100, how can i disable it?

I try it

QMAKE_CFLAGS_WARN_ON -= -wd4100 -Wno-unused-parameter
QMAKE_CXXFLAGS_WARN_ON -= -wd4100 -Wno-unused-parameter

but it solution doesnt work.

Any suggestions?

Upvotes: 1

Views: 288

Answers (1)

edwinc
edwinc

Reputation: 1676

try:

  QMAKE_CXXFLAGS *= -wd4100 

Upvotes: 2

Related Questions