diff options
author | Loek Le Blansch <loek@pipeframe.xyz> | 2024-05-25 18:30:13 +0200 |
---|---|---|
committer | Loek Le Blansch <loek@pipeframe.xyz> | 2024-05-25 18:30:13 +0200 |
commit | 4525f60f29359b7ba88e47880d79fb9869913656 (patch) | |
tree | d6fa4be85ddfcee9861304eee53660bff7487d26 /client/CMakeLists.txt | |
parent | 4fc192eb9ba949276c47c1bbd86164d955d3548c (diff) | |
parent | 5d5b186a5a82b7e2415eddd77ef93af851034a5b (diff) |
Merge branch 'wip/main-controller' into wip/i2c-communication
Diffstat (limited to 'client/CMakeLists.txt')
-rw-r--r-- | client/CMakeLists.txt | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/client/CMakeLists.txt b/client/CMakeLists.txt index bcef4c0..35a55b6 100644 --- a/client/CMakeLists.txt +++ b/client/CMakeLists.txt @@ -8,13 +8,18 @@ project(puzzlebox_client C CXX) include(../proto/include.cmake) -add_executable(main +add_executable(pbc main.cpp + rl.cpp + sock.cpp + cmd.cpp + parse.cpp ) -target_link_libraries(main +target_link_libraries(pbc puzbus mpack + readline # this is such a common library that I did not bother adding it as a submodule ) |