Files
sqlpp11/tests/CMakeLists.txt
T
2013-11-07 13:36:54 +01:00

12 lines
232 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)