Files @ f563ace40263
Branch filter:

Location: EI/VirtualLeaf/src/TutorialCode/Tutorial1C/Makefile

Roeland Merks
In response to referee's comment

"I am also afraid that the ‘snapshot’ and the ‘Export cell data’ functions do not seem to work very well in my hands, could the program be changed so that the correct file extension (.jpg, .tif, .txt, .dat, .xls, .csv…) is given automatically."

I corrected the "exportCellData()" function in canvas.cpp. It did not actually call exportCellData(filename) after the user entered a filename (logic after calling QMessageBox was incorrect).

--
user: Roeland Merks <roeland.merks@cwi.nl>
branch 'default'
changed src/canvas.cpp
# $Id$

# Set an environment varible $(MAKE) to the name of the make command
# on your machine, e.g. 'make' on UNIX and 'mingw32-make' on windows.
# Fallback default is UNIX make.

ifeq ($(MAKE),)
	MAKE=make
endif

# Ditto for QMAKE
ifeq ($(QMAKE),)
	QMAKE=qmake
endif

all: tutorial1C

tutorial1C: Makefile.tutorial1C
	$(MAKE) -f Makefile.tutorial1C

Makefile.tutorial1C: tutorial1C.pro
	$(QMAKE) -o $@ $< 

clean:
	$(MAKE) -f Makefile.tutorial1C clean
ifeq ($(MAKE),make)
	touch tutorial1C.pro
else
	copy /b tutorial1C.pro +,,
endif

# finis