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

CMakeLists.txt

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