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

Wrapped code generator example with a check for boost-1.56+

This commit is contained in:
rbock 2015-01-29 23:32:03 +01:00
parent bebe52f1c5
commit 59c5bc8970

View File

@ -11,7 +11,13 @@ build(insert)
build(update)
build(remove)
build(select)
build(ppgen)
find_package(Boost 1.56)
if(Boost_FOUND)
MESSAGE(${Boost_INCLUDE_DIRS})
include_directories(${Boost_INCLUDE_DIRS})
build(ppgen)
endif()
#find_package(PythonInterp REQUIRED)