diff options
author | Pete Johanson <peter@peterjohanson.com> | 2020-05-01 14:58:00 -0400 |
---|---|---|
committer | Pete Johanson <peter@peterjohanson.com> | 2020-05-01 14:58:00 -0400 |
commit | 52bfc9dd84592f834c13ce9af4a1dd7fc90d7fef (patch) | |
tree | 808a50c4fb4238987d3b7bc6aebb3f1c4c2af29f /CMakeLists.txt | |
parent | 5b4e43cebd89c09e7cbd405f4a0dfdb942add4fc (diff) |
Lots of clean up, basic kscan working, remove zephyr-rust.
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r-- | CMakeLists.txt | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index baeedcc..9667067 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,14 +1,9 @@ # Find Zephyr. This also loads Zephyr's build system. cmake_minimum_required(VERSION 3.13.1) -list(APPEND BOARD_ROOT .) +list(APPEND BOARD_ROOT ${CMAKE_SOURCE_DIR}) -get_filename_component(ZEPHYR_RUST ${CMAKE_CURRENT_SOURCE_DIR}/zephyr-rust ABSOLUTE) -list(APPEND ZEPHYR_EXTRA_MODULES ${ZEPHYR_RUST}) - -include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE) find_package(Zephyr) - project(zmk) # Add your source file to the "app" target. This must come after |