18 lines
441 B
CMake
18 lines
441 B
CMake
cmake_minimum_required(VERSION 2.8.12...3.27)
|
|
|
|
################
|
|
## Variables
|
|
#########################
|
|
IF(LEXBOR_BUILD_SHARED)
|
|
set(EXAMPLES_DEPS_LIB_NAMES ${LEXBOR_LIB_NAME})
|
|
ELSEIF(LEXBOR_BUILD_STATIC)
|
|
set(EXAMPLES_DEPS_LIB_NAMES ${LEXBOR_LIB_NAME_STATIC})
|
|
ELSE()
|
|
message(FATAL_ERROR "Requires static or dynamic Lexbor library")
|
|
ENDIF()
|
|
|
|
################
|
|
## Subs
|
|
#########################
|
|
FIND_AND_APPEND_SUB_DIRS("lexbor" OFF)
|