aboutsummaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorLoek Le Blansch <loek@pipeframe.xyz>2024-06-18 19:29:05 +0200
committerLoek Le Blansch <loek@pipeframe.xyz>2024-06-18 19:29:05 +0200
commitcc9b3beb1e82449e34dc3d7052395607fe12b47f (patch)
treef16258fd34abc8bda8ba9c491cd3552381a0fbe8 /test
parent752dca0a41581282498ccb0d3e2aedb15181e4a8 (diff)
WIP puzzle module <-> main controller <-> client communication
Diffstat (limited to 'test')
-rw-r--r--test/CMakeLists.txt2
-rw-r--r--test/pbdrv/pb-route.c2
2 files changed, 4 insertions, 0 deletions
diff --git a/test/CMakeLists.txt b/test/CMakeLists.txt
index 30f3f77..1ec0cc6 100644
--- a/test/CMakeLists.txt
+++ b/test/CMakeLists.txt
@@ -10,12 +10,14 @@ project(pbtest C CXX ASM)
add_executable(test
# i2ctcp/main.cpp
+ pbdrv/pb-route.c
pbdrv/msg.cpp
pbdrv/mod.c
)
add_subdirectory(lib/googletest)
add_subdirectory(lib/pbdrv)
+include(lib/pbdrv/ext/stdlib/include.cmake)
add_subdirectory(lib/i2ctcp)
target_link_libraries(test
diff --git a/test/pbdrv/pb-route.c b/test/pbdrv/pb-route.c
new file mode 100644
index 0000000..62a4b85
--- /dev/null
+++ b/test/pbdrv/pb-route.c
@@ -0,0 +1,2 @@
+void pb_mod_blocking_delay_ms(unsigned long ms) { }
+