diff options
author | Pete Johanson <peter@peterjohanson.com> | 2020-05-10 17:13:24 -0400 |
---|---|---|
committer | Pete Johanson <peter@peterjohanson.com> | 2020-05-10 17:13:24 -0400 |
commit | 60feb8fb097786d415fa5d582b2b6390eecaea37 (patch) | |
tree | 9d1de7219efa53a17754f88177635b954feecbd3 /CMakeLists.txt | |
parent | 70bf1230fa45dde5c91bf684f439bc1e88d4413c (diff) |
Expanded handler implementation, more key defines.
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r-- | CMakeLists.txt | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index da0d9d9..6b09b3a 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -9,8 +9,10 @@ project(zmk) # Add your source file to the "app" target. This must come after # find_package(Zephyr) which defines the target. +target_include_directories(app PRIVATE include) target_sources(app PRIVATE src/kscan.c) target_sources(app PRIVATE src/keymap.c) target_sources(app PRIVATE src/usb_hid.c) target_sources(app PRIVATE src/main.c) +target_sources(app PRIVATE src/handlers.c) |