mirror of
https://github.com/ddnet/ddnet.git
synced 2024-11-10 10:08:18 +00:00
Merge #2986
2986: Try to fix FindSQLite3.cmake r=heinrich5991 a=def- For @panos' Haiku port: https://github.com/panos/ddnet > CMake Error: The following variables are used in this project, but they are set to NOTFOUND. > Please set them or make sure they are set and tested correctly in the CMake files: > /boot/home/ddnet/SQLite3_INCLUDEDIR @heinrich5991 thoughts? Co-authored-by: def <dennis@felsin9.de>
This commit is contained in:
commit
a83b7b0733
|
@ -4,7 +4,6 @@ if(NOT PREFER_BUNDLED_LIBS)
|
||||||
set(CMAKE_MODULE_PATH ${OWN_CMAKE_MODULE_PATH})
|
set(CMAKE_MODULE_PATH ${OWN_CMAKE_MODULE_PATH})
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
if(NOT SQLite3_FOUND)
|
|
||||||
if(NOT CMAKE_CROSSCOMPILING)
|
if(NOT CMAKE_CROSSCOMPILING)
|
||||||
find_package(PkgConfig QUIET)
|
find_package(PkgConfig QUIET)
|
||||||
pkg_check_modules(PC_SQLite3 sqlite3)
|
pkg_check_modules(PC_SQLite3 sqlite3)
|
||||||
|
@ -28,7 +27,6 @@ if(NOT SQLite3_FOUND)
|
||||||
include(FindPackageHandleStandardArgs)
|
include(FindPackageHandleStandardArgs)
|
||||||
find_package_handle_standard_args(SQLite3 DEFAULT_MSG SQLite3_INCLUDEDIR SQLite3_LIBRARY)
|
find_package_handle_standard_args(SQLite3 DEFAULT_MSG SQLite3_INCLUDEDIR SQLite3_LIBRARY)
|
||||||
mark_as_advanced(SQLite3_INCLUDEDIR SQLite3_LIBRARY)
|
mark_as_advanced(SQLite3_INCLUDEDIR SQLite3_LIBRARY)
|
||||||
endif()
|
|
||||||
|
|
||||||
if(SQLite3_FOUND)
|
if(SQLite3_FOUND)
|
||||||
is_bundled(SQLite3_BUNDLED "${SQLite3_LIBRARY}")
|
is_bundled(SQLite3_BUNDLED "${SQLite3_LIBRARY}")
|
||||||
|
|
Loading…
Reference in a new issue