CMakeLists.txt
1.61 KB
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
cmake_minimum_required (VERSION 2.8)
project (Morfeusz)
set (Morfeusz_VERSION_MAJOR 0)
set (Morfeusz_VERSION_MINOR 1)
set (CMAKE_BUILD_TYPE "Release")
set (CMAKE_CXX_FLAGS "-std=gnu++0x -Wall -O2 -pedantic -Wcast-align -Wextra -Wmissing-noreturn -Wconversion -Wcast-qual -Wcast-align")
enable_testing()
configure_file (
"${PROJECT_SOURCE_DIR}/morfeusz/MorfeuszConfig.hpp.in"
"${PROJECT_BINARY_DIR}/morfeusz/MorfeuszConfig.hpp"
)
include_directories("${PROJECT_BINARY_DIR}")
add_subdirectory (morfeusz)
file(COPY fsabuilder testfiles DESTINATION .)
macro (test_build_and_recognize fname method)
add_test (TestBuild-${method}-${fname} python fsabuilder/fsa/buildfsa.py -i testfiles/${fname} -o /tmp/test-${method}-${fname}.fsa --tagset-file=testfiles/polimorf.tagset --output-format=BINARY --serialization-method=${method})
add_test (TestRecognize-${method}-${fname} morfeusz/test_morph /tmp/test-${method}-${fname}.fsa testfiles/${fname})
# add_test (TestNOTRecognize-${method}-${fname} fsa/test_not_recognize /tmp/test-${method}-${fname}.fsa testfiles/out_of_dict)
# add_test (TestSpeed-${method}-${fname} fsa/test_speed /tmp/test-${method}-${fname}.fsa testfiles/speed_test_data)
endmacro (test_build_and_recognize)
test_build_and_recognize(PoliMorfSmall.tab SIMPLE)
test_build_and_recognize(PoliMorfSmall.tab V1)
test_build_and_recognize(PoliMorfSmall.tab V2)
#test_build_and_recognize(dict_medium SIMPLE)
#test_build_and_recognize(dict_medium V1)
#test_build_and_recognize(dict_medium V2)
#test_build_and_recognize(dict_full SIMPLE)
#test_build_and_recognize(dict_full V1)
#test_build_and_recognize(dict_full V2)