9e750d341a
Loading examples.sln resulted in a cascade of error messages because Visual Studio doesn't allow projects of the same name in a solution. Now using QMAKE_PROJECT_NAME to give the projects distinct names. Change-Id: Ifd3a00311253e4b234ece936092649ce0f0869d8 Reviewed-by: Thomas Hartmann <Thomas.Hartmann@digia.com>
16 lines
445 B
Prolog
16 lines
445 B
Prolog
SOURCES = addressbook.cpp \
|
|
main.cpp
|
|
HEADERS = addressbook.h
|
|
|
|
QMAKE_PROJECT_NAME = ab_part3
|
|
|
|
# install
|
|
target.path = $$[QT_INSTALL_EXAMPLES]/qtbase/tutorials/addressbook/part3
|
|
sources.files = $$SOURCES $$HEADERS $$RESOURCES $$FORMS part3.pro
|
|
sources.path = $$[QT_INSTALL_EXAMPLES]/qtbase/tutorials/addressbook/part3
|
|
INSTALLS += target sources
|
|
|
|
QT += widgets
|
|
|
|
simulator: warning(This example might not fully work on Simulator platform)
|