diff options
Diffstat (limited to '')
-rw-r--r-- | LayoutStudio.pro | 48 |
1 files changed, 48 insertions, 0 deletions
diff --git a/LayoutStudio.pro b/LayoutStudio.pro new file mode 100644 index 0000000..7a1c8c0 --- /dev/null +++ b/LayoutStudio.pro @@ -0,0 +1,48 @@ +# ------------------------------------------------- +# Project created by QtCreator 2010-10-03T04:03:27 +# ------------------------------------------------- +QT += opengl +TARGET = LayoutStudio +TEMPLATE = app +SOURCES += main.cpp \ + lsmainwindow.cpp \ + lsglobals.cpp \ + lyt/packagebase.cpp \ + lyt/directorypackage.cpp \ + lyt/layout.cpp \ + lyt/binaryfile.cpp \ + lyt/binaryfilesection.cpp \ + lyt/materials/material.cpp \ + lyt/pane.cpp \ + lyt/common.cpp \ + lyt/textbox.cpp \ + lyt/picture.cpp \ + lyt/window.cpp \ + lyt/bounding.cpp \ + lyt/group.cpp \ + lyt/materials/texmap.cpp +HEADERS += lsmainwindow.h \ + lsglobals.h \ + lyt/packagebase.h \ + lyt/directorypackage.h \ + lyt/layout.h \ + lyt/binaryfile.h \ + lyt/binaryfilesection.h \ + lyt/materials/material.h \ + lyt/pane.h \ + lyt/common.h \ + lyt/textbox.h \ + lyt/picture.h \ + lyt/window.h \ + lyt/bounding.h \ + lyt/group.h \ + lyt/materials/texmap.h +FORMS += lsmainwindow.ui +RESOURCES += resources.qrc + +OTHER_FILES += \ + icons/window.png \ + icons/textbox.png \ + icons/picture.png \ + icons/pane.png \ + icons/bounding.png |