2020-04-22 06:20:34 +10:00
|
|
|
# Find Zephyr. This also loads Zephyr's build system.
|
|
|
|
cmake_minimum_required(VERSION 3.13.1)
|
2020-04-26 12:41:20 +10:00
|
|
|
|
2020-05-02 04:58:00 +10:00
|
|
|
list(APPEND BOARD_ROOT ${CMAKE_SOURCE_DIR})
|
2020-05-06 06:09:05 +10:00
|
|
|
list(APPEND DTS_ROOT ${CMAKE_SOURCE_DIR})
|
2020-04-22 06:20:34 +10:00
|
|
|
|
2020-04-26 12:41:20 +10:00
|
|
|
find_package(Zephyr)
|
2020-04-22 06:20:34 +10:00
|
|
|
project(zmk)
|
|
|
|
|
|
|
|
# Add your source file to the "app" target. This must come after
|
|
|
|
# find_package(Zephyr) which defines the target.
|
2020-05-11 07:13:24 +10:00
|
|
|
target_include_directories(app PRIVATE include)
|
2020-05-02 09:14:18 +10:00
|
|
|
target_sources(app PRIVATE src/kscan.c)
|
2020-05-04 05:49:33 +10:00
|
|
|
target_sources(app PRIVATE src/keymap.c)
|
2020-05-06 06:09:05 +10:00
|
|
|
target_sources(app PRIVATE src/usb_hid.c)
|
2020-04-22 06:20:34 +10:00
|
|
|
target_sources(app PRIVATE src/main.c)
|
2020-05-11 07:13:24 +10:00
|
|
|
target_sources(app PRIVATE src/handlers.c)
|
2020-04-22 06:20:34 +10:00
|
|
|
|