16 lines
473 B
Makefile
16 lines
473 B
Makefile
# TODO: organize files more
|
|
|
|
# reduce warnings/errors for subdirectory objects
|
|
AUTOMAKE_OPTIONS = subdir-objects
|
|
|
|
# the name of the binary file
|
|
bin_PROGRAMS = drogon_dashboard
|
|
|
|
# Uses shell pkg-config CLI to find and include required libs
|
|
AM_CXXFLAGS = $(shell pkg-config --cflags gtkmm-4.0)
|
|
LIBS = $(shell pkg-config --libs gtkmm-4.0 libadwaita-1)
|
|
|
|
# various *.cpp and *.h files for the root project; the '\' implies a *newline*
|
|
drogon_dashboard_SOURCES = \
|
|
src/base.cpp
|