This commit is contained in:
fwastring 2025-10-13 10:38:50 +02:00
commit ab9a0bd4e2
183 changed files with 20701 additions and 0 deletions

26
src/gtkgui/Makefile Normal file
View file

@ -0,0 +1,26 @@
TARGET = bredbandskollen
DIRLEVEL = ..
# Possible LOGLEVEL values: dbg, info, warn, err, none
LOGLEVEL=info
# We will use Logger in more than one thread:
THREADS=1
# Uncomment if GnuTLS version 3.5 or later is available
# GNUTLS=1
SOURCES=../http/cookiefile.cpp \
../framework/unixdomainbridge.cpp \
../framework/unixdomainclient.cpp \
../framework/shortmessageconnection.cpp \
main.cpp \
gtkclient.cpp \
../cli/utils.cpp
CXXFLAGS=$(shell pkg-config --cflags gtk+-3.0)
LIBS=$(shell pkg-config --libs gtk+-3.0)
#CXXFLAGS += -g
include $(DIRLEVEL)/measurement/mk.inc