Files
seer/tests/helloqstring/Makefile
T

11 lines
214 B
Makefile
Raw Normal View History

2023-11-21 19:01:38 -06:00
.PHONY: all
all: helloqstring
helloqstring: helloqstring.cpp
g++ -std=c++17 -g -I/usr/include/qt6 -o helloqstring helloqstring.cpp -L/usr/lib64 -lQt6Core
.PHONY: clean
clean:
rm -f helloqstring helloqstring.o