diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-10-11 22:21:44 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-10-11 22:21:44 +0900 |
commit | e93b60dfa24c4b72c1cffa7556949afe69654c02 (patch) | |
tree | c4ace60cd76f8f464683925074cb981f528b93e3 /tools/designer/tquic/tquic.pro | |
parent | 8066b05478ac646d0410fc9cedca5f82163b53d3 (diff) | |
download | tqt3-e93b60dfa24c4b72c1cffa7556949afe69654c02.tar.gz tqt3-e93b60dfa24c4b72c1cffa7556949afe69654c02.zip |
Rename uic to tquic
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'tools/designer/tquic/tquic.pro')
-rw-r--r-- | tools/designer/tquic/tquic.pro | 42 |
1 files changed, 42 insertions, 0 deletions
diff --git a/tools/designer/tquic/tquic.pro b/tools/designer/tquic/tquic.pro new file mode 100644 index 000000000..40a9b436e --- /dev/null +++ b/tools/designer/tquic/tquic.pro @@ -0,0 +1,42 @@ +TEMPLATE = app +CONFIG += qt console warn_on release professional +HEADERS = tquic.h \ + ../shared/widgetdatabase.h \ + ../shared/domtool.h \ + ../shared/parser.h \ + ../interfaces/widgetinterface.h + +#HEADERS += ../shared/ui2uib.h \ +# ../shared/uib.h + +SOURCES = main.cpp tquic.cpp form.cpp object.cpp \ + subclassing.cpp embed.cpp\ + ../shared/widgetdatabase.cpp \ + ../shared/domtool.cpp \ + ../shared/parser.cpp + +#SOURCES += ../shared/ui2uib.cpp \ +# ../shared/uib.cpp + +DEFINES += QT_INTERNAL_XML +include( ../../../src/qt_professional.pri ) + +TARGET = tquic +INCLUDEPATH += ../shared +DEFINES += TQUIC +DESTDIR = ../../../bin + +target.path=$$bins.path +INSTALLS += target + +*-mwerks { + TEMPLATE = lib + TARGET = McUic + CONFIG -= static + CONFIG += shared plugin + DEFINES += UIC_MWERKS_PLUGIN + MWERKSDIR = $(QT_SOURCE_TREE)/util/mwerks_plugin + INCLUDEPATH += $$MWERKSDIR/Headers + LIBS += $$MWERKSDIR/Libraries/PluginLib4.shlb + SOURCES += mwerks_mac.cpp +} |