diff options
author | Roland Reichwein <mail@reichwein.it> | 2022-12-03 16:12:14 +0100 |
---|---|---|
committer | Roland Reichwein <mail@reichwein.it> | 2022-12-03 16:12:14 +0100 |
commit | 70131428edce8d7c6476a902d015b30b78e5f862 (patch) | |
tree | f522c3efc0e9901d59e91da59f36a52e927e9523 /Makefile | |
parent | bdf314288794e5ca898db9d07b1553182ea4d7ea (diff) |
Version 1.1: Added QR Codev1.1
Diffstat (limited to 'Makefile')
-rwxr-xr-x | Makefile | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -27,7 +27,7 @@ endif LIBS=-lfcgi -lboost_filesystem INCLUDES=-I. -HEADERS=file.h config.h +HEADERS=file.h config.h qrcode.h SOURCES=$(HEADERS:.h=.cpp) OBJECTS=$(HEADERS:.h=.o) TARGETS=whiteboard.fcgi @@ -59,6 +59,9 @@ LIBS+= \ -lstdc++fs endif +CXXFLAGS+=$(shell pkg-config --cflags qrcodegencpp Magick++ fmt) +LIBS+=$(shell pkg-config --libs qrcodegencpp Magick++ fmt) + build: $(TARGETS) all: build |