src/GUI/GUI.pro contains a hardcoded path to PCSC
Status: Alpha
Brought to you by:
aiacono
src/GUI/GUI.pro contains:
INCLUDEPATH += -I/usr/local/include/PCSC
but should contain:
INCLUDEPATH += $(shell pkg-config --cflags
libpcsclite | cut -c3- )
"pkg-config --cflags libpcsclite" returns
-I/usr/include/PCSC and "cut -c3-" is used to remove
the leading "-I"