added last Poco module to cmake infrastructure - PocoODBC (working at least on linux32 + unixodbc + gcc 4.3.2)

This commit is contained in:
Marian Krivos
2009-03-08 17:03:18 +00:00
parent e0c971a581
commit c4f6084c25
5 changed files with 80 additions and 34 deletions

View File

@@ -29,11 +29,15 @@ install(
)
add_subdirectory( SQLite )
if(MYSQL_FOUND)
add_subdirectory( MySQL )
endif(MYSQL_FOUND)
if(ODBC_CONFIG)
# add_subdirectory( ODBC )
include(../contrib/cmake/FindODBC.cmake)
if(NOT ODBC_CONFIG-NOT_FOUND)
add_subdirectory( ODBC )
endif(ODBC_CONFIG)
add_subdirectory( samples )