# # Qt qmake file for SCheMatic (the Vendor Supply Chain Manager-O-Matic) # by James Hammons # (C) 2012 Underground Software # # Use 'qmake -o Makefile schematic.pro', or just qmake CONFIG += qt #CONFIG += qt debug QT += sql # We stuff all the intermediate crap into obj, so we mere mortals can deal with # it. :-) OBJECTS_DIR = ./obj MOC_DIR = ./obj RCC_DIR = ./obj UI_DIR = ./obj RESOURCES += schematic.qrc # Source files HEADERS += src/about.h \ src/configdialog.h \ src/generaltab.h \ src/logindialog.h \ src/main.h \ src/mainwin.h SOURCES += src/about.cpp \ src/configdialog.cpp \ src/generaltab.cpp \ src/logindialog.cpp \ src/main.cpp \ src/mainwin.cpp