.pro files improvements

This commit is contained in:
Alex Zolotarev 2011-03-20 03:50:22 +00:00 committed by Alex Zolotarev
parent 06898fd160
commit c058c9db4e
4 changed files with 8 additions and 26 deletions

View file

@ -12,9 +12,7 @@ TEMPLATE = app
# needed for Platform::WorkingDir()
QT += core
win32 {
LIBS += -lShell32
}
win32:LIBS += -lShell32
SOURCES += \
generator_tool.cpp \

View file

@ -10,13 +10,8 @@ include($$ROOT_DIR/common.pri)
QT *= core gui opengl
win32 {
LIBS += -lopengl32 -lShell32
}
win32-g++ {
LIBS += -lpthread
}
win32:LIBS += -lopengl32 -lShell32
win32-g++:LIBS += -lpthread
HEADERS += \
feature_routine.hpp \

View file

@ -106,13 +106,7 @@ HEADERS += \
circle_info.hpp \
area_renderer.hpp
!iphonesimulator-g++42 {
!iphonedevice-g++42 {
!bada-simulator {
!bada-device {
HEADERS += internal/opengl_win32.hpp
SOURCES += internal/opengl_win32.cpp
}
}
}
!iphone*:!bada-simulator {
HEADERS += internal/opengl_win32.hpp
SOURCES += internal/opengl_win32.cpp
}

View file

@ -10,13 +10,8 @@ include($$ROOT_DIR/common.pri)
QT += opengl gui core
win32-g++ {
LIBS += -lpthread
}
win32 {
LIBS += -lopengl32 -lshell32
}
win32:LIBS += -lopengl32 -lshell32
win32-g++:LIBS += -lpthread
SOURCES += \
../../testing/testingmain.cpp \