GUI: Move Windows-specific options and files to own scope in project file.
This commit is contained in:
parent
3311113775
commit
c55f28ca2b
10
gui/gui.pro
10
gui/gui.pro
|
@ -13,8 +13,6 @@ RESOURCES = gui.qrc
|
||||||
|
|
||||||
# Windows-specific options
|
# Windows-specific options
|
||||||
CONFIG += embed_manifest_exe
|
CONFIG += embed_manifest_exe
|
||||||
RC_FILE = cppcheck-gui.rc
|
|
||||||
win32:LIBS += -lshlwapi
|
|
||||||
|
|
||||||
# Input
|
# Input
|
||||||
HEADERS += mainwindow.h \
|
HEADERS += mainwindow.h \
|
||||||
|
@ -48,7 +46,6 @@ HEADERS += mainwindow.h \
|
||||||
../src/checkother.h \
|
../src/checkother.h \
|
||||||
../src/cppcheckexecutor.h \
|
../src/cppcheckexecutor.h \
|
||||||
../src/filelister.h \
|
../src/filelister.h \
|
||||||
../src/resource.h \
|
|
||||||
../src/token.h
|
../src/token.h
|
||||||
|
|
||||||
|
|
||||||
|
@ -83,3 +80,10 @@ SOURCES += main.cpp \
|
||||||
../src/checkunusedfunctions.cpp \
|
../src/checkunusedfunctions.cpp \
|
||||||
../src/settings.cpp \
|
../src/settings.cpp \
|
||||||
../src/tokenize.cpp
|
../src/tokenize.cpp
|
||||||
|
|
||||||
|
|
||||||
|
win32 {
|
||||||
|
RC_FILE = cppcheck-gui.rc
|
||||||
|
HEADERS += ../src/resource.h
|
||||||
|
LIBS += -lshlwapi
|
||||||
|
}
|
||||||
|
|
Loading…
Reference in New Issue