src.nth.io/

summaryrefslogtreecommitdiff
path: root/main/CMakeLists.txt
diff options
context:
space:
mode:
authorLuke Hoersten <[email protected]>2021-03-12 11:56:07 -0600
committerLuke Hoersten <[email protected]>2021-03-12 11:56:07 -0600
commitc6d3d96ed6a659f7a3c1f616caebe325a3d139bd (patch)
tree470016b10b16e31a8190da4fb769725b6bd9898a /main/CMakeLists.txt
parent2d08f681e6e53b71a295b0ab05155f4315fea76f (diff)
Broke out services into their own files.
Diffstat (limited to 'main/CMakeLists.txt')
-rw-r--r--main/CMakeLists.txt4
1 files changed, 2 insertions, 2 deletions
diff --git a/main/CMakeLists.txt b/main/CMakeLists.txt
index 0e1f552..1237afe 100644
--- a/main/CMakeLists.txt
+++ b/main/CMakeLists.txt
@@ -1,4 +1,4 @@
idf_component_register(
- SRCS "app_main.c"
- INCLUDE_DIRS ""
+ SRCS "src/event_queue.c" "src/lock.c" "src/bell.c" "app_main.c"
+ INCLUDE_DIRS "include"
)