summaryrefslogtreecommitdiff
path: root/tools/cmake
diff options
context:
space:
mode:
authorIvo Stoilov (GitHub) <istoilov@luxoft.com>2017-01-03 17:44:15 +0200
committerIvo Stoilov (GitHub) <istoilov@luxoft.com>2017-01-03 17:44:15 +0200
commit22b926d4af4e4aab9ae0746d2bfd8625ceadcc9d (patch)
tree587f20b21e146b1beef4013f80c343b7ae9a4939 /tools/cmake
parent82c9705d98e5cd73c1907857ba208ca5092ea9c5 (diff)
downloadsdl_core-22b926d4af4e4aab9ae0746d2bfd8625ceadcc9d.tar.gz
Apply code review comments
Remove FindSDLSqlite3 module, replace with FindSqlite3 Remove commented code Fix redundant libraries in resumption test Related tasks APPLINK-30588 APPLINK-30972
Diffstat (limited to 'tools/cmake')
-rw-r--r--tools/cmake/modules/FindSDLSqlite3.cmake15
1 files changed, 0 insertions, 15 deletions
diff --git a/tools/cmake/modules/FindSDLSqlite3.cmake b/tools/cmake/modules/FindSDLSqlite3.cmake
deleted file mode 100644
index 1338ef297f..0000000000
--- a/tools/cmake/modules/FindSDLSqlite3.cmake
+++ /dev/null
@@ -1,15 +0,0 @@
-# - 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()