mirror of
https://github.com/neovim/neovim.git
synced 2024-12-19 18:55:14 -07:00
c50951a4d0
- simplify lua interpreter search - fix incorrect variable name in BuildLua.cmake - build PUC Lua with -O2 - silence non-mandatory find_package search for libuv - simplify Find modules - Prefer using the explicitly set CI_BUILD over relying on the environment variable "CI".
10 lines
421 B
CMake
10 lines
421 B
CMake
find_library(LPEG_LIBRARY NAMES lpeg_a lpeg liblpeg_a lpeg${CMAKE_SHARED_LIBRARY_SUFFIX} PATH_SUFFIXES lua/5.1)
|
|
|
|
find_package_handle_standard_args(Lpeg DEFAULT_MSG LPEG_LIBRARY)
|
|
mark_as_advanced(LPEG_LIBRARY)
|
|
|
|
# Workaround: use an imported library to prevent cmake from modifying library
|
|
# link path. See #23395.
|
|
add_library(lpeg UNKNOWN IMPORTED)
|
|
set_target_properties(lpeg PROPERTIES IMPORTED_LOCATION ${LPEG_LIBRARY})
|