mirror of
https://github.com/LadybirdBrowser/ladybird
synced 2026-05-03 13:02:09 +02:00
9 lines
293 B
CMake
9 lines
293 B
CMake
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()
|