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:
parent
5ec471b78d
commit
d41d1d2035
3 changed files with 145 additions and 0 deletions
8
Userland/Libraries/LibSQL/Tests/CMakeLists.txt
Normal file
8
Userland/Libraries/LibSQL/Tests/CMakeLists.txt
Normal 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()
|
Loading…
Add table
Add a link
Reference in a new issue