mirror of
https://github.com/neovim/neovim.git
synced 2024-12-20 03:05:11 -07:00
6765bbc651
The variables are not meant to be defined there really, but only with the third-party project. Using them, e.g. with the following, would actually result in libvterm not being found then: make CMAKE_EXTRA_FLAGS="-DUSE_BUNDLED_LIBVTERM=ON" \ DEPS_CMAKE_FLAGS="-DUSE_BUNDLED=OFF -DUSE_BUNDLED_LIBVTERM=ON" In https://github.com/neovim/neovim/pull/6357 they were renamed to `USE_BUNDLED_X` from `X_USE_BUNDLED`, but the above reasoning applies to the old names, too. Internally `CMAKE_PREFIX_PATH` is used to add the built/bundled third party packages for `find_package`, so there is no reason to e.g. query the values via `load_cache` for example from the third-party project.
38 lines
1.2 KiB
CMake
38 lines
1.2 KiB
CMake
# - Try to find libvterm
|
|
# Once done this will define
|
|
# LIBVTERM_FOUND - System has libvterm
|
|
# LIBVTERM_INCLUDE_DIRS - The libvterm include directories
|
|
# LIBVTERM_LIBRARIES - The libraries needed to use libvterm
|
|
|
|
find_package(PkgConfig)
|
|
if (PKG_CONFIG_FOUND)
|
|
pkg_check_modules(PC_LIBVTERM QUIET vterm)
|
|
endif()
|
|
|
|
set(LIBVTERM_DEFINITIONS ${PC_LIBVTERM_CFLAGS_OTHER})
|
|
|
|
find_path(LIBVTERM_INCLUDE_DIR vterm.h
|
|
PATHS ${PC_LIBVTERM_INCLUDEDIR} ${PC_LIBVTERM_INCLUDE_DIRS})
|
|
|
|
# If we're asked to use static linkage, add libuv.a as a preferred library name.
|
|
if(LIBVTERM_USE_STATIC)
|
|
list(APPEND LIBVTERM_NAMES
|
|
"${CMAKE_STATIC_LIBRARY_PREFIX}vterm${CMAKE_STATIC_LIBRARY_SUFFIX}")
|
|
endif()
|
|
|
|
list(APPEND LIBVTERM_NAMES vterm)
|
|
|
|
find_library(LIBVTERM_LIBRARY NAMES ${LIBVTERM_NAMES}
|
|
HINTS ${PC_LIBVTERM_LIBDIR} ${PC_LIBVTERM_LIBRARY_DIRS})
|
|
|
|
set(LIBVTERM_LIBRARIES ${LIBVTERM_LIBRARY})
|
|
set(LIBVTERM_INCLUDE_DIRS ${LIBVTERM_INCLUDE_DIR})
|
|
|
|
include(FindPackageHandleStandardArgs)
|
|
# handle the QUIETLY and REQUIRED arguments and set LIBVTERM_FOUND to TRUE
|
|
# if all listed variables are TRUE
|
|
find_package_handle_standard_args(LibVterm DEFAULT_MSG
|
|
LIBVTERM_LIBRARY LIBVTERM_INCLUDE_DIR)
|
|
|
|
mark_as_advanced(LIBVTERM_INCLUDE_DIR LIBVTERM_LIBRARY)
|