Skip to content
Snippets Groups Projects
Select Git revision
  • 20aef337ae74a264d6fd10bc841e3c624f72f4af
  • master default protected
  • fullUD
  • movementInAction
4 results

CMakeLists.txt

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})