mirror of
https://github.com/RGBCube/serenity
synced 2025-05-23 18:55:08 +00:00
8 lines
293 B
CMake
8 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()
|