ff4ff35918
Red Bear OS is a full fork. All sources must be available from git clone with zero network access. Removed gitignore rules that excluded fetched source trees under recipes/*/source/, local/recipes/kde/*/source/, local/recipes/qt/*/source/, and vendor source trees. Build artifacts (target/, build/, source.tar, *.o, *.so) remain excluded. 127291 files added — kernel, relibc, base, bootloader, pkgar, all KDE/Qt frameworks, mesa, wayland, DRM drivers, and every other recipe source.
14 lines
461 B
CMake
14 lines
461 B
CMake
# Modified from FindReadline.cmake (PH Feb 2012)
|
|
|
|
if(EDITLINE_INCLUDE_DIR AND EDITLINE_LIBRARY)
|
|
set(EDITLINE_FOUND TRUE)
|
|
else()
|
|
find_path(EDITLINE_INCLUDE_DIR readline.h PATH_SUFFIXES editline edit/readline)
|
|
|
|
find_library(EDITLINE_LIBRARY NAMES edit)
|
|
include(FindPackageHandleStandardArgs)
|
|
find_package_handle_standard_args(Editline DEFAULT_MSG EDITLINE_INCLUDE_DIR EDITLINE_LIBRARY)
|
|
|
|
mark_as_advanced(EDITLINE_INCLUDE_DIR EDITLINE_LIBRARY)
|
|
endif()
|