summaryrefslogtreecommitdiff
path: root/test/CMakeLists.txt
diff options
context:
space:
mode:
Diffstat (limited to 'test/CMakeLists.txt')
-rw-r--r--test/CMakeLists.txt10
1 files changed, 10 insertions, 0 deletions
diff --git a/test/CMakeLists.txt b/test/CMakeLists.txt
new file mode 100644
index 00000000..ddcc063a
--- /dev/null
+++ b/test/CMakeLists.txt
@@ -0,0 +1,10 @@
+cmake_minimum_required(VERSION 3.16)
+include(../common.cmake)
+
+# Treat warnings as errors for test purposes.
+list(APPEND EXTRA_WARNINGS "-Werror")
+
+# List all components that include tests here.
+set(TEST_COMPONENTS "drivers")
+
+project(device_tests)