Welcome to mirror list, hosted at ThFree Co, Russian Federation.

kenlmConfig.cmake.in « cmake - github.com/kpu/kenlm.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 0fbf0c64f1c837d41de41b405cdc78ced02aadf7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
@PACKAGE_INIT@

include(CMakeFindDependencyMacro)

find_dependency(Boost)
find_dependency(Threads)

# Compression libs
if (@ZLIB_FOUND@)
  find_dependency(ZLIB)
endif()
if (@BZIP2_FOUND@)
  find_dependency(BZip2)
endif()
if (@LIBLZMA_FOUND@)
  find_dependency(LibLZMA)
endif()

include("${CMAKE_CURRENT_LIST_DIR}/kenlmTargets.cmake")