mirror of
https://github.com/SerenityOS/serenity.git
synced 2025-01-23 01:41:59 -05: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()
|