Skip to content
Snippets Groups Projects
Select Git revision
  • 71c198d99f636e67abda9a3377e4ac5a30dec34d
  • master default protected
  • johannes
  • partial_parser
  • Aloui_Dary
  • ignore_punct
  • AC
  • classifier
  • fixhelp
  • libmacaon2
  • error_predictor
  • morpho
  • ssrnn
  • tfparsing
  • silvio
  • tagger_options
  • maca_trans_frame_parser
  • alexis
  • new_config
  • tagparse
  • maca_graph_parser
21 results

CMakeLists.txt

Blame
  • CMakeLists.txt 800 B
    #compiling, linking and installing executables
    
    add_executable(mcf2conll ./src/mcf2conll.c)
    target_link_libraries(mcf2conll perceptron)
    target_link_libraries(mcf2conll transparse)
    target_link_libraries(mcf2conll maca_common)
    install (TARGETS mcf2conll DESTINATION bin)
    
    add_executable(mcf2orfeo ./src/mcf2orfeo.c)
    target_link_libraries(mcf2orfeo perceptron)
    target_link_libraries(mcf2orfeo transparse)
    target_link_libraries(mcf2orfeo maca_common)
    install (TARGETS mcf2orfeo DESTINATION bin)
    
    add_executable(mcf2json ./src/mcf2json.c)
    target_link_libraries(mcf2json maca_common)
    install (TARGETS mcf2json DESTINATION bin)
    
    add_executable(maca_compute_l_rules ./src/maca_compute_l_rules.c)
    target_link_libraries(maca_compute_l_rules maca_common)
    install (TARGETS maca_compute_l_rules DESTINATION bin)