1
0
Fork 0

Fixed SQLiteCpp include paths for MSVC2010+.

This commit is contained in:
Mattes D 2014-07-28 22:06:47 +02:00
parent 5fb5f6671f
commit 7f7604a186
1 changed files with 1 additions and 1 deletions

View File

@ -75,8 +75,8 @@ add_subdirectory(lib/luaexpat/)
# Add proper include directories so that SQLiteCpp can find SQLite3:
get_property(SQLITECPP_INCLUDES DIRECTORY "lib/SQLiteCpp/" PROPERTY INCLUDE_DIRECTORIES)
set(SQLITECPP_INCLUDES "${SQLITECPP_INCLUDES}" "${CMAKE_CURRENT_SOURCE_DIR}/lib/sqlite/")
message("SQLiteCpp includes: " "${SQLITECPP_INCLUDES}")
set_property(DIRECTORY lib/SQLiteCpp/ PROPERTY INCLUDE_DIRECTORIES "${SQLITECPP_INCLUDES}")
set_property(TARGET SQLiteCpp PROPERTY INCLUDE_DIRECTORIES "${SQLITECPP_INCLUDES}")
if (WIN32)
add_subdirectory(lib/luaproxy/)