Skip to content

Commit

Permalink
Fix sqlite3 target includes for build interface
Browse files Browse the repository at this point in the history
  • Loading branch information
peterbell10 authored and tigerw committed May 16, 2020
1 parent be1a8ee commit 6aec7cf
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions sqlite3/CMakeLists.txt
Expand Up @@ -11,9 +11,9 @@ add_library(sqlite3
sqlite3.h
)

target_include_directories(sqlite3
PRIVATE $<BUILD_INTERFACE:${CMAKE_CURRENT_SOURCE_DIR}>
PUBLIC $<INSTALL_INTERFACE:include/>)
target_include_directories(sqlite3 PUBLIC
$<BUILD_INTERFACE:${CMAKE_CURRENT_SOURCE_DIR}>
$<INSTALL_INTERFACE:include/>)

if (SQLITE_ENABLE_COLUMN_METADATA)
# Enable the use of SQLite column metadata method
Expand Down

0 comments on commit 6aec7cf

Please sign in to comment.