mirror of
https://github.com/SerenityOS/serenity.git
synced 2025-01-23 18:02:05 -05:00
16 lines
434 B
CMake
16 lines
434 B
CMake
set(TEST_SOURCES
|
|
TestLibCoreArgsParser.cpp
|
|
TestLibCoreFileWatcher.cpp
|
|
TestLibCoreIODevice.cpp
|
|
TestLibCoreDeferredInvoke.cpp
|
|
TestLibCoreStream.cpp
|
|
)
|
|
|
|
foreach(source IN LISTS TEST_SOURCES)
|
|
serenity_test("${source}" LibCore)
|
|
endforeach()
|
|
|
|
# NOTE: Required because of the LocalServer tests
|
|
target_link_libraries(TestLibCoreStream LibThreading)
|
|
|
|
install(FILES long_lines.txt 10kb.txt DESTINATION usr/Tests/LibCore)
|