diff options
author | Treeki <treeki@gmail.com> | 2010-10-07 15:56:13 +0200 |
---|---|---|
committer | Treeki <treeki@gmail.com> | 2010-10-07 15:56:13 +0200 |
commit | 5f6dad55d75cbe146ff7fefc899a02ccd39078ba (patch) | |
tree | 0822df14cc6d2c0329810c9ae7b4a4a638fe82b1 /LayoutStudio.pro | |
download | LayoutStudio-5f6dad55d75cbe146ff7fefc899a02ccd39078ba.tar.gz LayoutStudio-5f6dad55d75cbe146ff7fefc899a02ccd39078ba.zip |
initial commit -- everything compiles except for material.cpp. the material system still needs quite a bit of work; this will come in due time
Diffstat (limited to 'LayoutStudio.pro')
-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 |