0
0
mirror of https://github.com/rbock/sqlpp11.git synced 2024-11-16 04:47:18 +08:00
sqlpp11/tests/CMakeLists.txt
2013-11-22 09:42:28 +01:00

13 lines
260 B
CMake

macro (build_and_run arg)
add_executable(${arg} ${arg}.cpp)
add_test(${arg} ${arg})
endmacro ()
build_and_run(InsertTest)
build_and_run(RemoveTest)
build_and_run(UpdateTest)
build_and_run(SelectTest)
build_and_run(FunctionTest)
build_and_run(PreparedTest)