Files
ladybird/Tests/LibC/CMakeLists.txt
Tim Schumacher b8c756a53a LibC: Primitively implement wcscoll
At the moment, sorting like LC_COLLATE=C would do is better than
nothing.
2021-09-18 02:57:56 +00:00

27 lines
589 B
CMake

set(TEST_SOURCES
TestIo.cpp
TestLibCExec.cpp
TestLibCDirEnt.cpp
TestLibCInodeWatcher.cpp
TestLibCMkTemp.cpp
TestLibCSetjmp.cpp
TestLibCString.cpp
TestLibCTime.cpp
TestMemmem.cpp
TestQsort.cpp
TestRealpath.cpp
TestScanf.cpp
TestSnprintf.cpp
TestStackSmash.cpp
TestStrlcpy.cpp
TestStrtodAccuracy.cpp
TestWchar.cpp
TestWctype.cpp
)
set_source_files_properties(TestStrtodAccuracy.cpp PROPERTIES COMPILE_FLAGS "-fno-builtin-strtod")
foreach(source IN LISTS TEST_SOURCES)
serenity_test("${source}" LibC)
endforeach()