Files
seer/tests/helloimage/Makefile
T
2024-11-16 14:10:54 -06:00

11 lines
212 B
Makefile

.PHONY: all
all: helloimage
helloimage: helloimage.cpp
g++-13 -std=c++17 -g -I/usr/include/qt6 -o helloimage helloimage.cpp -L/usr/lib64 -lQt6Core -lQt6Gui
.PHONY: clean
clean:
rm -f helloimage helloimage.o