inital commit

This commit is contained in:
Carl Philipp Klemm 2025-11-10 19:15:19 +01:00
commit d52abc2a14
3 changed files with 424 additions and 0 deletions

10
CMakeLists.txt Executable file
View file

@ -0,0 +1,10 @@
cmake_minimum_required(VERSION 2.4)
project(cliclient)
add_executable(cliclient cliclient.c)
target_link_libraries( cliclient /home/philipp/BA/Programming/CliClient/libgattlib.so )
set_target_properties( cliclient PROPERTIES COMPILE_FLAGS -m64 LINK_FLAGS -m64)
add_definitions("-s -Wall")
install(TARGETS cliclient RUNTIME DESTINATION bin)