You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
352 B
10 lines
352 B
3 years ago
|
include(FetchContent)
|
||
|
FetchContent_Declare(
|
||
|
kenlm
|
||
|
GIT_REPOSITORY "https://github.com/kpu/kenlm.git"
|
||
|
GIT_TAG "df2d717e95183f79a90b2fa6e4307083a351ca6a"
|
||
|
)
|
||
|
# https://github.com/kpu/kenlm/blob/master/cmake/modules/FindEigen3.cmake
|
||
|
set(EIGEN3_INCLUDE_DIR ${Eigen3_SOURCE_DIR})
|
||
|
FetchContent_MakeAvailable(kenlm)
|
||
|
include_directories(${kenlm_SOURCE_DIR})
|