summaryrefslogtreecommitdiff
path: root/AK/Tests
diff options
context:
space:
mode:
Diffstat (limited to 'AK/Tests')
-rw-r--r--AK/Tests/CMakeLists.txt42
1 files changed, 41 insertions, 1 deletions
diff --git a/AK/Tests/CMakeLists.txt b/AK/Tests/CMakeLists.txt
index 07f9fc4f0f..675e2a4b64 100644
--- a/AK/Tests/CMakeLists.txt
+++ b/AK/Tests/CMakeLists.txt
@@ -1,4 +1,44 @@
-file(GLOB AK_TEST_SOURCES CONFIGURE_DEPENDS "*.cpp")
+set(AK_TEST_SOURCES
+ TestAllOf.cpp
+ TestArray.cpp
+ TestAtomic.cpp
+ TestBase64.cpp
+ TestBinarySearch.cpp
+ TestBitmap.cpp
+ TestByteBuffer.cpp
+ TestChecked.cpp
+ TestCircularDeque.cpp
+ TestCircularDuplexStream.cpp
+ TestCircularQueue.cpp
+ TestDistinctNumeric.cpp
+ TestEndian.cpp
+ TestFormat.cpp
+ TestHashFunctions.cpp
+ TestHashMap.cpp
+ TestIPv4Address.cpp
+ TestJSON.cpp
+ TestLexicalPath.cpp
+ TestMACAddress.cpp
+ TestMemMem.cpp
+ TestMemoryStream.cpp
+ TestNeverDestroyed.cpp
+ TestNonnullRefPtr.cpp
+ TestNumberFormat.cpp
+ TestOptional.cpp
+ TestQueue.cpp
+ TestQuickSort.cpp
+ TestRefPtr.cpp
+ TestSourceGenerator.cpp
+ TestSpan.cpp
+ TestString.cpp
+ TestStringUtils.cpp
+ TestStringView.cpp
+ TestTypedTransfer.cpp
+ TestURL.cpp
+ TestUtf8.cpp
+ TestVector.cpp
+ TestWeakPtr.cpp
+)
foreach(source ${AK_TEST_SOURCES})
get_filename_component(name ${source} NAME_WE)