###################################################### # # lab1.pro - Sample qmake file for building multi-file # applications. # # Written by: H. Welch September 2002 # ###################################################### # Build the shell library TEMPLATE = app #CONFIG += warn_on release #original #CONFIG += qt warn_on release CONFIG += warn_on release # Change to debug from release to support symbolic debugging # Define pathing variables for flexibility # You can move your files to the typical src, include, and bin # directories by customizing these e.g. unix:INCLUDEPATH += $$(BASE)include unix:BASE = ./ unix:SUBDIRS += $$(BASE) unix:VPATH += $$(BASE) unix:OBJECTS_DIR = $$(BASE) unix:INCLUDEPATH += $$(BASE) unix:DEPENDPATH += $$(BASE) # Help the system find the needed libraries # -lm is the math library #unix:LIBS += -lm # Specify the name of the target (default make output - the executable program) TARGET = cs321lab1 # Describe source code files SOURCES += cs321lab1.cpp SOURCES += pixelcalc.cpp # Add additional SOURCES lines for each .cpp file in your project # Describe the header files HEADERS += pixelcalc.h # Add additional HEADERS lines for each .h file in your project