feat(app): add mk-moshable

This commit is contained in:
2025-11-24 01:22:23 +01:00
parent 6e07b36f02
commit ce0b64d24f
2 changed files with 97 additions and 1 deletions

View File

@@ -18,8 +18,15 @@ target_link_libraries(mosh-me avcpp::avcpp spdlog::spdlog)
target_compile_features(mosh-me PUBLIC cxx_std_23)
target_include_directories(mosh-me PRIVATE ${PROJECT_SOURCE_DIR}/include)
add_executable(mk-moshable
${PROJECT_SOURCE_DIR}/app/mk-moshable.cpp
)
target_link_libraries(mk-moshable avcpp::avcpp spdlog::spdlog)
target_compile_features(mk-moshable PUBLIC cxx_std_23)
target_include_directories(mk-moshable PRIVATE ${PROJECT_SOURCE_DIR}/include)
install(TARGETS mosh-me mosh-me)
install(TARGETS mosh-me mk-moshable)
################################################################################