marinone94's picture
Training in progress, epoch 0
1ce325b
# This CMake file was created by Lane Schwartz <dowobeha@gmail.com>
# Explicitly list the source files for this subdirectory
#
# If you add any source files to this subdirectory
# that should be included in the kenlm library,
# (this excludes any unit test files)
# you should add them to the following list:
#
# In order to allow CMake files in the parent directory
# to see this variable definition, we set PARENT_SCOPE.
#
# In order to set correct paths to these files
# when this variable is referenced by CMake files in the parent directory,
# we prefix all files with ${CMAKE_CURRENT_SOURCE_DIR}.
#
set(KENLM_UTIL_STREAM_SOURCE
${CMAKE_CURRENT_SOURCE_DIR}/chain.cc
${CMAKE_CURRENT_SOURCE_DIR}/count_records.cc
${CMAKE_CURRENT_SOURCE_DIR}/io.cc
${CMAKE_CURRENT_SOURCE_DIR}/line_input.cc
${CMAKE_CURRENT_SOURCE_DIR}/multi_progress.cc
${CMAKE_CURRENT_SOURCE_DIR}/rewindable_stream.cc
PARENT_SCOPE)
if(BUILD_TESTING)
# Explicitly list the Boost test files to be compiled
set(KENLM_BOOST_TESTS_LIST
io_test
sort_test
stream_test
rewindable_stream_test
)
AddTests(TESTS ${KENLM_BOOST_TESTS_LIST}
LIBRARIES kenlm_util ${Boost_LIBRARIES} Threads::Threads)
endif()