mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-09 18:31:04 +00:00
5d3d26b024
The added cmake-parameter is: -DLYX_EXTERNAL_MYTHES=<value> where <value> is one of AUTO (Default) Search first on system for mythes (lib and include) ON Use installed only (errors if not installed) OFF Compile the provided source in 3rdparty
26 lines
856 B
CMake
26 lines
856 B
CMake
cmake_minimum_required(VERSION 2.4.4)
|
|
set(CMAKE_ALLOW_LOOSE_LOOP_CONSTRUCTS ON)
|
|
|
|
project(zlib C)
|
|
|
|
set(VERSION "1.2.5")
|
|
set(SRCDIR ${CMAKE_CURRENT_SOURCE_DIR}/${VERSION})
|
|
|
|
file(GLOB support_mythes_sources ${SRCDIR}/*.cxx)
|
|
file(GLOB support_mythes_headers ${SRCDIR}/*.hxx)
|
|
|
|
include_directories(${VERSION})
|
|
|
|
#============================================================================
|
|
# lyxmytheslib
|
|
#============================================================================
|
|
|
|
add_library(mytheslibstatic STATIC ${support_mythes_sources} ${support_mythes_headers} )
|
|
|
|
|
|
set(MYTHESLIB_LIBRARY mytheslibstatic CACHE STRING "Mytheslib library" FORCE)
|
|
set(MYTHESLIB_INCLUDE_DIR ${SRCDIR} CACHE STRING "Mytheslib include dir" FORCE)
|
|
set(MYTHESLIB_FOUND CACHE STRING "Mytheslib found" FORCE )
|
|
|
|
set_target_properties(mytheslibstatic PROPERTIES FOLDER "3rd_party")
|