mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-22 23:50:19 +00:00
1b40bf9783
The features provided by these classes should be used eventually, but so far we've been maintaining these classes for over 2 years without any actual use. We can restore them when it comes time to actually use them.
13 lines
324 B
CMake
13 lines
324 B
CMake
set(TEST_SOURCES
|
|
TestSqlBtreeIndex.cpp
|
|
TestSqlDatabase.cpp
|
|
TestSqlExpressionParser.cpp
|
|
TestSqlHeap.cpp
|
|
TestSqlStatementExecution.cpp
|
|
TestSqlStatementParser.cpp
|
|
TestSqlValueAndTuple.cpp
|
|
)
|
|
|
|
foreach(source IN LISTS TEST_SOURCES)
|
|
serenity_test("${source}" LibSQL LIBS LibSQL LibIPC)
|
|
endforeach()
|