]> Shamusworld >> Repos - schematic/blob - schematic.pro
Added a bunch of new functionality
[schematic] / schematic.pro
1 #
2 # Qt qmake file for SCheMatic (the Vendor Supply Chain Manager-O-Matic)
3 # by James Hammons
4 # (C) 2012 Underground Software
5 #
6
7 # Use 'qmake -o Makefile schematic.pro', or just qmake
8
9 CONFIG += qt
10 #CONFIG += qt debug
11 QT += sql
12
13 # We stuff all the intermediate crap into obj, so we mere mortals can deal with
14 # it. :-)
15
16 OBJECTS_DIR = ./obj
17 MOC_DIR = ./obj
18 RCC_DIR = ./obj
19 UI_DIR = ./obj
20
21 RESOURCES += schematic.qrc
22
23 # Source files
24
25 HEADERS += src/about.h \
26         src/configdialog.h \
27         src/generaltab.h \
28         src/logindialog.h \
29         src/main.h \
30         src/mainwin.h \
31         src/newvendordialog.h \
32         src/sqlsettingsdialog.h \
33         src/vendorclassdialog.h
34
35 SOURCES += src/about.cpp \
36         src/configdialog.cpp \
37         src/generaltab.cpp \
38         src/logindialog.cpp \
39         src/main.cpp \
40         src/mainwin.cpp \
41         src/newvendordialog.cpp \
42         src/sqlsettingsdialog.cpp \
43         src/vendorclassdialog.cpp
44