anti-prestige-tool/Makefile

20 lines
638 B
Makefile
Raw Permalink Normal View History

2026-05-01 10:26:41 +01:00
CXX ?= g++
PKG_CONFIG ?= pkg-config
2026-05-01 14:18:16 +01:00
MOC ?= /usr/lib/qt6/moc
2026-05-01 10:26:41 +01:00
2026-05-01 13:05:49 +01:00
PORTAL_CFLAGS := $(shell $(PKG_CONFIG) --cflags Qt6Core Qt6DBus Qt6Gui gstreamer-1.0 gstreamer-app-1.0 gstreamer-video-1.0)
PORTAL_LIBS := $(shell $(PKG_CONFIG) --libs Qt6Core Qt6DBus Qt6Gui gstreamer-1.0 gstreamer-app-1.0 gstreamer-video-1.0)
2026-05-01 10:26:41 +01:00
2026-05-01 14:18:16 +01:00
.PHONY: all clean
2026-05-01 10:26:41 +01:00
2026-05-01 14:18:16 +01:00
all: portal_capture_frame
2026-05-01 13:05:49 +01:00
portal_capture_frame: portal_capture_frame.cpp portal_capture_frame.moc
$(CXX) -std=c++17 -O2 -Wall -Wextra -fPIC $(PORTAL_CFLAGS) $< -o $@ $(PORTAL_LIBS)
portal_capture_frame.moc: portal_capture_frame.cpp
$(MOC) $< -o $@
2026-05-01 10:26:41 +01:00
clean:
2026-05-01 14:18:16 +01:00
rm -f portal_capture_frame portal_capture_frame.moc