
Added a minimal CDC client application that uses the CDC connector library. This is mainly intended for manual testing so it is built using the accompanying Makefile instead of being a part of the CMake system.
6 lines
93 B
Makefile
6 lines
93 B
Makefile
all:
|
|
c++ -I ../ ../cdc_connector.cpp main.cpp -ljansson -lcrypto -o cdc
|
|
|
|
clean:
|
|
rm -rf cdc
|