SDL: cmake: Add some missing test-cases

From 6fc7aa28e7c71c6087c008dd7b3924564d427de6 Mon Sep 17 00:00:00 2001
From: Simon McVittie <[EMAIL REDACTED]>
Date: Wed, 4 May 2022 13:15:12 +0100
Subject: [PATCH] cmake: Add some missing test-cases

These were built by Autotools but not by CMake.

Signed-off-by: Simon McVittie <smcv@collabora.com>
---
 test/CMakeLists.txt | 8 ++++++++
 1 file changed, 8 insertions(+)

diff --git a/test/CMakeLists.txt b/test/CMakeLists.txt
index 330af47c495..cd00af610d7 100644
--- a/test/CMakeLists.txt
+++ b/test/CMakeLists.txt
@@ -68,6 +68,11 @@ add_executable(testdraw2 testdraw2.c)
 add_executable(testdrawchessboard testdrawchessboard.c)
 add_executable(testdropfile testdropfile.c)
 add_executable(testerror testerror.c)
+
+if(LINUX)
+    add_executable(testevdev testevdev.c)
+endif()
+
 add_executable(testfile testfile.c)
 add_executable(testgamecontroller testgamecontroller.c)
 add_executable(testgeometry testgeometry.c)
@@ -84,6 +89,7 @@ add_executable(testime testime.c)
 add_executable(testjoystick testjoystick.c)
 add_executable(testkeys testkeys.c)
 add_executable(testloadso testloadso.c)
+add_executable(testlocale testlocale.c)
 add_executable(testlock testlock.c)
 add_executable(testmouse testmouse.c)
 
@@ -104,12 +110,14 @@ add_executable(testfilesystem testfilesystem.c)
 add_executable(testrendertarget testrendertarget.c)
 add_executable(testscale testscale.c)
 add_executable(testsem testsem.c)
+add_executable(testsensor testsensor.c)
 add_executable(testshader testshader.c)
 add_executable(testshape testshape.c)
 add_executable(testsprite2 testsprite2.c)
 add_executable(testspriteminimal testspriteminimal.c)
 add_executable(teststreaming teststreaming.c)
 add_executable(testtimer testtimer.c)
+add_executable(testurl testurl.c)
 add_executable(testver testver.c)
 add_executable(testviewport testviewport.c)
 add_executable(testwm2 testwm2.c)