summaryrefslogtreecommitdiff
path: root/app/drivers
diff options
context:
space:
mode:
authorPete Johanson <peter@peterjohanson.com>2020-12-04 16:25:32 -0500
committerPete Johanson <peter@peterjohanson.com>2020-12-04 16:25:32 -0500
commitca38894e072473b173f9ca98d86e65eefa04a009 (patch)
tree8655c2bba601209d7c219c5e13d403ad4691b4fa /app/drivers
parent54cbc07e6eda04322292745796829401ee769142 (diff)
fix(drivers): Remove conditional from directories.
Diffstat (limited to 'app/drivers')
-rw-r--r--app/drivers/CMakeLists.txt4
1 files changed, 2 insertions, 2 deletions
diff --git a/app/drivers/CMakeLists.txt b/app/drivers/CMakeLists.txt
index 13f04f8..b47e87a 100644
--- a/app/drivers/CMakeLists.txt
+++ b/app/drivers/CMakeLists.txt
@@ -1,5 +1,5 @@
# Copyright (c) 2020 The ZMK Contributors
# SPDX-License-Identifier: MIT
-add_subdirectory_ifdef(CONFIG_KSCAN kscan)
-add_subdirectory_ifdef(CONFIG_SENSOR sensor) \ No newline at end of file
+add_subdirectory(kscan)
+add_subdirectory(sensor) \ No newline at end of file