mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-07 02:28:35 +00:00
f2e437f6b8
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@38830 a592a061-630c-0410-9148-cb99ea01b6c8
29 lines
773 B
CMake
29 lines
773 B
CMake
#
|
|
# based on FindZLIB.cmake
|
|
# created 2009, Kornel Benko, <kornel.benko@berlin.de>
|
|
#
|
|
|
|
set(CMAKE_ALLOW_LOOSE_LOOP_CONSTRUCTS true)
|
|
|
|
if (MYTHESLIB_INCLUDE_DIR)
|
|
# Already in cache, be silent
|
|
set(MYTHESLIB_FIND_QUIETLY TRUE)
|
|
endif()
|
|
|
|
set(MYTHES_H mythes.hxx)
|
|
find_path(MYTHESLIB_INCLUDE_DIR ${MYTHES_H}
|
|
/usr/include
|
|
/usr/local/include)
|
|
|
|
set(POTENTIAL_MYTHES_LIBS mythes)
|
|
|
|
find_library(MYTHESLIB_LIBRARY NAMES ${POTENTIAL_MYTHES_LIBS}
|
|
PATHS ${SYSTEM_LIB_DIRS} )
|
|
|
|
# handle the QUIETLY and REQUIRED arguments and set MYTHESLIB_FOUND to TRUE if
|
|
# all listed variables are TRUE
|
|
include(FindPackageHandleStandardArgs)
|
|
find_package_handle_standard_args(MYTHESLIB DEFAULT_MSG MYTHESLIB_LIBRARY MYTHESLIB_INCLUDE_DIR)
|
|
|
|
mark_as_advanced(MYTHESLIB_LIBRARY MYTHESLIB_INCLUDE_DIR)
|