diff options
author | Roland Reichwein <mail@reichwein.it> | 2023-01-01 15:48:43 +0100 |
---|---|---|
committer | Roland Reichwein <mail@reichwein.it> | 2023-01-01 15:48:43 +0100 |
commit | 6c339d8aab380a191fe3fce7ca7dc7c09e252ebd (patch) | |
tree | ca5a1288fcbc5299b5bf5cc28d012a5bd6147549 /common.mk | |
parent | cbf1ba38794ab6a323441dcc3b0e5e942f7ab386 (diff) |
Tests and coverage on gcc and clang
Diffstat (limited to 'common.mk')
-rw-r--r-- | common.mk | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -1,4 +1,5 @@ CXX=clang++-14 +#CXX=g++-12 ifeq ($(shell which $(CXX)),) CXX=clang++-13 @@ -43,5 +44,5 @@ endif CXXFLAGS+=$(shell pkg-config --cflags qrcodegencpp Magick++ fmt sqlite3) LIBS+=-lfcgi -lboost_filesystem -LIBS+=$(shell pkg-config --libs qrcodegencpp Magick++ fmt sqlite3) -lSQLiteCpp +LIBS+=-lSQLiteCpp $(shell pkg-config --libs qrcodegencpp Magick++ fmt sqlite3) |