add_executable(fst_test fst_test.cc ../include/fst/test/fst_test.h ) target_link_libraries(fst_test fst ${CMAKE_DL_LIBS}) set_target_properties(fst_test PROPERTIES FOLDER test) add_test(NAME fst_test-test COMMAND fst_test) add_executable(weight_test weight_test.cc ../include/fst/test/weight-tester.h ) target_link_libraries(weight_test fst ${CMAKE_DL_LIBS}) set_target_properties(weight_test PROPERTIES FOLDER test) add_test(NAME weight_test-test COMMAND weight_test) add_executable(algo_test_log algo_test.cc ../include/fst/test/algo_test.h ../include/fst/test/rand-fst.h) target_link_libraries(algo_test_log fst ${CMAKE_DL_LIBS}) target_compile_definitions(algo_test_log PRIVATE TEST_LOG=1) set_target_properties(algo_test_log PROPERTIES FOLDER test) add_test(NAME algo_test_log-test COMMAND algo_test_log) add_executable(algo_test_tropical algo_test.cc ../include/fst/test/algo_test.h ../include/fst/test/rand-fst.h) target_link_libraries(algo_test_tropical fst ${CMAKE_DL_LIBS}) target_compile_definitions(algo_test_tropical PRIVATE TEST_TROPICAL=1) set_target_properties(algo_test_tropical PROPERTIES FOLDER test) add_test(NAME algo_test_tropical-test COMMAND algo_test_tropical) add_executable(algo_test_minmax algo_test.cc ../include/fst/test/algo_test.h ../include/fst/test/rand-fst.h) target_link_libraries(algo_test_minmax fst ${CMAKE_DL_LIBS}) target_compile_definitions(algo_test_minmax PRIVATE TEST_MINMAX=1) set_target_properties(algo_test_minmax PROPERTIES FOLDER test) add_test(NAME algo_test_minmax-test COMMAND algo_test_minmax) add_executable(algo_test_lexicographic algo_test.cc ../include/fst/test/algo_test.h ../include/fst/test/rand-fst.h) target_link_libraries(algo_test_lexicographic fst ${CMAKE_DL_LIBS}) target_compile_definitions(algo_test_lexicographic PRIVATE TEST_LEXICOGRAPHIC=1) set_target_properties(algo_test_lexicographic PROPERTIES FOLDER test) add_test(NAME algo_test_lexicographic-test COMMAND algo_test_lexicographic) add_executable(algo_test_power algo_test.cc ../include/fst/test/algo_test.h ../include/fst/test/rand-fst.h) target_link_libraries(algo_test_power fst ${CMAKE_DL_LIBS}) target_compile_definitions(algo_test_power PRIVATE TEST_POWER=1) set_target_properties(algo_test_power PROPERTIES FOLDER test) add_test(NAME algo_test_power-test COMMAND algo_test_power)