summaryrefslogtreecommitdiff
path: root/tools/cmake/modules/FindSDLSqlite3.cmake
blob: 1338ef297f6d61e61bba0b948ebfb83def989a27 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#  - Try to find Sqlite3
#
#  SQLITE3_INCLUDE_DIRECTORY - the Sqlite3 include directory
#  SQLITE3_LIBRARIES - the Sqlite3 libraries

get_os(OS)
if(${OS} STREQUAL "posix")
  find_package(Sqlite3 REQUIRED)
elseif(${OS} STREQUAL "win")
  get_sdk(SDK)
  if(NOT SDK OR NOT ${SDK} STREQUAL "qt")
    set(SQLITE3_INCLUDE_DIRECTORY $ENV{SDL_SQLITE_DIR})
    set(SQLITE3_LIBRARIES $ENV{SDL_SQLITE_DIR}/sqlite3.lib)
  endif()
endif()