2014-01-29 03:53:22 +08:00
|
|
|
|
2013-08-15 19:26:09 +08:00
|
|
|
macro (build_and_run arg)
|
2014-01-19 05:21:20 +08:00
|
|
|
# Add headers to sources to enable file browsing in IDEs
|
2014-01-29 03:53:22 +08:00
|
|
|
include_directories(${CMAKE_BINARY_DIR}/tests)
|
|
|
|
add_executable(${arg} ${arg}.cpp ${sqlpp_headers} ${CMAKE_CURRENT_LIST_DIR}/Sample.h)
|
2013-08-15 19:26:09 +08:00
|
|
|
add_test(${arg} ${arg})
|
|
|
|
endmacro ()
|
|
|
|
|
2014-01-11 07:11:47 +08:00
|
|
|
build_and_run(InterpretTest)
|
2014-02-09 05:24:05 +08:00
|
|
|
build_and_run(InsertTest)
|
|
|
|
build_and_run(RemoveTest)
|
|
|
|
build_and_run(UpdateTest)
|
|
|
|
build_and_run(SelectTest)
|
|
|
|
build_and_run(FunctionTest)
|
|
|
|
build_and_run(PreparedTest)
|
2013-08-15 19:26:09 +08:00
|
|
|
|
2014-02-03 02:10:14 +08:00
|
|
|
find_package(PythonInterp REQUIRED)
|
|
|
|
|
2014-01-29 03:53:22 +08:00
|
|
|
add_custom_command(
|
|
|
|
OUTPUT ${CMAKE_CURRENT_LIST_DIR}/Sample.h
|
2014-02-03 02:10:14 +08:00
|
|
|
COMMAND ${PYTHON_EXECUTABLE} ${CMAKE_SOURCE_DIR}/scripts/ddl2cpp ${CMAKE_CURRENT_LIST_DIR}/sample.sql Sample test
|
2014-01-29 03:53:22 +08:00
|
|
|
)
|
|
|
|
|