Select Git revision
CMakeLists.txt
CMakeLists.txt 471 B
set(SOURCES src/util.c
src/hash.c
src/dico.c
src/word_emb.c
src/mcd.c
src/dico_vec.c
src/form2pos.c
src/word.c
src/sentence.c
src/word_buffer.c
src/trie.c
src/feat_desc.c
src/feat_lib.c
src/feat_model.c
)
#compiling library
add_library(maca_common STATIC ${SOURCES})
#compiling, linking and installing executables
#add_executable(test_trie ./test/test_trie.c)
#target_link_libraries(test_trie maca_common)
#install (TARGETS test_trie DESTINATION bin)