blob: 8217c116cc816b967356deeaa82268ef4c81c929 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
|
INCLUDE_DIRECTORIES(${CMAKE_CURRENT_SOURCE_DIR}/../utils)
set(fast_score_SRCS fast_score.cc)
add_executable(fast_score ${fast_score_SRCS})
target_link_libraries(fast_score mteval utils ${Boost_LIBRARIES} ${ZLIB_LIBRARIES})
set(mbr_kbest_SRCS mbr_kbest.cc)
add_executable(mbr_kbest ${mbr_kbest_SRCS})
target_link_libraries(mbr_kbest mteval utils ${Boost_LIBRARIES} ${ZLIB_LIBRARIES})
set(TEST_SRCS scorer_test.cc)
foreach(testSrc ${TEST_SRCS})
#Extract the filename without an extension (NAME_WE)
get_filename_component(testName ${testSrc} NAME_WE)
#Add compile target
set_source_files_properties(${testSrc} PROPERTIES COMPILE_FLAGS "-DBOOST_TEST_DYN_LINK -DTEST_DATA=\\\"test_data/\\\"")
add_executable(${testName} ${testSrc})
#link to Boost libraries AND your targets and dependencies
target_link_libraries(${testName} mteval utils ${Boost_LIBRARIES} ${ZLIB_LIBRARIES})
#I like to move testing binaries into a testBin directory
set_target_properties(${testName} PROPERTIES
RUNTIME_OUTPUT_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR})
#Finally add it to test execution -
#Notice the WORKING_DIRECTORY and COMMAND
add_test(NAME ${testName} COMMAND ${CMAKE_CURRENT_SOURCE_DIR}/${testName}
WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR})
endforeach(testSrc)
set(mteval_STAT_SRCS
aer_scorer.h
comb_scorer.h
external_scorer.h
levenshtein.h
ns.h
ns_cer.h
ns_comb.h
ns_docscorer.h
ns_ext.h
ns_ssk.h
ns_ter.h
ns_wer.h
scorer.h
ter.h
aer_scorer.cc
comb_scorer.cc
external_scorer.cc
meteor_jar.cc
ns.cc
ns_cer.cc
ns_comb.cc
ns_docscorer.cc
ns_ext.cc
ns_ssk.cc
ns_ter.cc
ns_wer.cc
scorer.cc
ter.cc)
add_library(mteval STATIC ${mteval_STAT_SRCS})
|