examples/tools/plugandpaint/plugandpaint.pro
changeset 0 1918ee327afb
equal deleted inserted replaced
-1:000000000000 0:1918ee327afb
       
     1 #! [0]
       
     2 HEADERS        = interfaces.h \
       
     3                  mainwindow.h \
       
     4                  paintarea.h \
       
     5                  plugindialog.h
       
     6 SOURCES        = main.cpp \
       
     7                  mainwindow.cpp \
       
     8                  paintarea.cpp \
       
     9                  plugindialog.cpp
       
    10 symbian {
       
    11     LIBS           = -lpnp_basictools.lib
       
    12 } else {
       
    13     LIBS           = -L$${QT_BUILD_TREE}/examples/tools/plugandpaint/plugins -lpnp_basictools
       
    14 }
       
    15 
       
    16 if(!debug_and_release|build_pass):CONFIG(debug, debug|release) {
       
    17    mac:LIBS = $$member(LIBS, 0) $$member(LIBS, 1)_debug
       
    18    win32:LIBS = $$member(LIBS, 0) $$member(LIBS, 1)d
       
    19 }
       
    20 #! [0]
       
    21 
       
    22 # install
       
    23 target.path = $$[QT_INSTALL_EXAMPLES]/tools/plugandpaint
       
    24 sources.files = $$SOURCES $$HEADERS $$RESOURCES $$FORMS plugandpaint.pro
       
    25 sources.path = $$[QT_INSTALL_EXAMPLES]/tools/plugandpaint
       
    26 INSTALLS += target sources
       
    27 
       
    28 symbian: include($$QT_SOURCE_TREE/examples/symbianpkgrules.pri)