Skip to content
Snippets Groups Projects
Select Git revision
  • f8c209f8890bfed1907190961a29866c2ae2f835
  • master default
  • object
  • develop protected
  • private_algos
  • cuisine
  • SMOTE
  • revert-76c4cca5
  • archive protected
  • no_graphviz
  • 0.0.1
11 results

api.rst

Blame
  • CMakeLists.txt 403 B
    FILE(GLOB SOURCES src/*.cpp)
    
    add_executable(macaon_decode src/macaon_decode.cpp)
    target_link_libraries(macaon_decode transition_machine)
    target_link_libraries(macaon_decode decoder)
    target_link_libraries(macaon_decode ${Boost_PROGRAM_OPTIONS_LIBRARY})
    target_link_libraries(macaon_decode errors)
    install(TARGETS macaon_decode DESTINATION bin)
    
    #compiling library
    add_library(decoder STATIC ${SOURCES})