1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-06-01 12:08:14 +00:00

LibSQL: Add unit testing of the SQL parser

This commit is contained in:
Timothy Flynn 2021-04-19 09:51:37 -04:00 committed by Andreas Kling
parent 5ec471b78d
commit d41d1d2035
3 changed files with 145 additions and 0 deletions

View file

@ -0,0 +1,8 @@
file(GLOB TEST_SOURCES CONFIGURE_DEPENDS "*.cpp")
foreach(source ${TEST_SOURCES})
get_filename_component(name ${source} NAME_WE)
add_executable(${name} ${source})
target_link_libraries(${name} LibSQL)
install(TARGETS ${name} RUNTIME DESTINATION usr/Tests/LibSQL)
endforeach()