0
0
mirror of https://github.com/rbock/sqlpp11.git synced 2024-11-15 20:31:16 +08:00

Using explicit call to python now, this might work on Windows even ;-)

This commit is contained in:
rbock 2014-02-02 19:10:14 +01:00
parent a29e28bad3
commit b907e3482d

View File

@ -14,8 +14,10 @@ build_and_run(SelectTest)
build_and_run(FunctionTest) build_and_run(FunctionTest)
build_and_run(PreparedTest) build_and_run(PreparedTest)
find_package(PythonInterp REQUIRED)
add_custom_command( add_custom_command(
OUTPUT ${CMAKE_CURRENT_LIST_DIR}/Sample.h OUTPUT ${CMAKE_CURRENT_LIST_DIR}/Sample.h
COMMAND ${CMAKE_SOURCE_DIR}/scripts/ddl2cpp ${CMAKE_CURRENT_LIST_DIR}/sample.sql Sample test COMMAND ${PYTHON_EXECUTABLE} ${CMAKE_SOURCE_DIR}/scripts/ddl2cpp ${CMAKE_CURRENT_LIST_DIR}/sample.sql Sample test
) )