rename bin

This commit is contained in:
Exil Productions
2025-12-27 00:24:33 +01:00
parent fcdb04bd09
commit 9f603f7869
2 changed files with 3 additions and 4 deletions

View File

@@ -20,9 +20,8 @@ set_target_properties(rtmp PROPERTIES
PUBLIC_HEADER include/rtmp_capi.h PUBLIC_HEADER include/rtmp_capi.h
) )
# Example executable add_executable(rtmp_server server/main.c)
add_executable(rtmp_example example/main.c) target_link_libraries(rtmp_server rtmp)
target_link_libraries(rtmp_example rtmp)
install(TARGETS rtmp install(TARGETS rtmp
LIBRARY DESTINATION lib LIBRARY DESTINATION lib
@@ -30,4 +29,4 @@ install(TARGETS rtmp
PUBLIC_HEADER DESTINATION include PUBLIC_HEADER DESTINATION include
) )
install(TARGETS rtmp_example DESTINATION bin) install(TARGETS rtmp_server DESTINATION bin)