FILE(GLOB SOURCES src/*.cpp) add_library(decoder STATIC ${SOURCES}) target_link_libraries(decoder reading_machine) add_executable(macaon_decode src/macaon_decode.cpp) target_link_libraries(macaon_decode Boost) target_link_libraries(macaon_decode decoder) target_link_libraries(macaon_decode common) install(TARGETS macaon_decode DESTINATION bin)