diff options
author | Mattes D <github@xoft.cz> | 2014-07-28 22:06:47 +0200 |
---|---|---|
committer | Mattes D <github@xoft.cz> | 2014-07-28 22:06:47 +0200 |
commit | 7f7604a186885107d0bd9625d969aef45a60dcce (patch) | |
tree | 72c65584dfff9e9fcf56227e8a392b4810a65d02 /CMakeLists.txt | |
parent | Fixed include directories for SQLiteCpp. (diff) | |
download | cuberite-7f7604a186885107d0bd9625d969aef45a60dcce.tar cuberite-7f7604a186885107d0bd9625d969aef45a60dcce.tar.gz cuberite-7f7604a186885107d0bd9625d969aef45a60dcce.tar.bz2 cuberite-7f7604a186885107d0bd9625d969aef45a60dcce.tar.lz cuberite-7f7604a186885107d0bd9625d969aef45a60dcce.tar.xz cuberite-7f7604a186885107d0bd9625d969aef45a60dcce.tar.zst cuberite-7f7604a186885107d0bd9625d969aef45a60dcce.zip |
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r-- | CMakeLists.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index 2b30e1e0b..dd9b1e67c 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -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/) |