From ca38894e072473b173f9ca98d86e65eefa04a009 Mon Sep 17 00:00:00 2001 From: Pete Johanson Date: Fri, 4 Dec 2020 16:25:32 -0500 Subject: [PATCH] fix(drivers): Remove conditional from directories. --- app/drivers/CMakeLists.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/drivers/CMakeLists.txt b/app/drivers/CMakeLists.txt index 13f04f82..b47e87a2 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