mirror of
https://github.com/epasveer/seer.git
synced 2026-08-30 00:50:42 +08:00
11 lines
214 B
Makefile
11 lines
214 B
Makefile
.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
|
|
|