2021-01-28 23:11:50 +00:00
|
|
|
find_path(SQLite3_INCLUDE_DIR NAMES sqlite3.h)
|
|
|
|
find_library(SQLite3_LIBRARY NAMES sqlite3 sqlite)
|
2019-07-23 21:43:50 +00:00
|
|
|
|
|
|
|
include(FindPackageHandleStandardArgs)
|
2021-01-28 23:11:50 +00:00
|
|
|
find_package_handle_standard_args(SQLite3 DEFAULT_MSG SQLite3_LIBRARY SQLite3_INCLUDE_DIR)
|
2019-07-23 21:43:50 +00:00
|
|
|
|
2021-01-28 23:11:50 +00:00
|
|
|
if(NOT TARGET SQLite3::SQLite3)
|
|
|
|
add_library(SQLite3::SQLite3 UNKNOWN IMPORTED)
|
|
|
|
set_target_properties(SQLite3::SQLite3 PROPERTIES
|
|
|
|
IMPORTED_LOCATION "${SQLite3_LIBRARY}"
|
|
|
|
INTERFACE_INCLUDE_DIRECTORIES "${SQLite3_INCLUDE_DIR}")
|
2019-07-23 21:43:50 +00:00
|
|
|
endif()
|