]> Shamusworld >> Repos - schematic/blob - schematic.pro
8cb96897cf03cdfe747a5ff829352158473b1e42
[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
32 SOURCES += src/about.cpp \
33         src/configdialog.cpp \
34         src/generaltab.cpp \
35         src/logindialog.cpp \
36         src/main.cpp \
37         src/mainwin.cpp
38