0
0
mirror of https://github.com/rbock/sqlpp11.git synced 2024-11-15 20:31:16 +08:00
sqlpp11/tests/CMakeLists.txt
Roland Bock 712d3a5c53 Renamed examples -> tests
Will need to add reasonable examples
2013-08-17 11:22:38 +02:00

11 lines
204 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)