1
0
Fork 0
mirror of https://github.com/albfan/miraclecast.git synced 2025-03-09 23:38:56 +00:00

fix cmake dependencies for

This commit is contained in:
Alberto Fanjul 2022-10-29 01:01:40 +02:00
parent 72f61549d9
commit 175495c729
6 changed files with 8 additions and 2 deletions

View file

@ -24,6 +24,7 @@ if(READLINE_FOUND)
endif(READLINE_FOUND)
target_link_libraries(miracle-wifictl miracle-shared)
target_link_libraries(miracle-wifictl m)
target_link_libraries(miracle-wifictl ${GLIB2_LIBRARIES})
########### next target ###############
@ -37,6 +38,7 @@ set(miracle-sinkctl_SRCS ctl.h
add_executable(miracle-sinkctl ${miracle-sinkctl_SRCS})
target_link_libraries(miracle-sinkctl ${GLIB2_LIBRARIES})
target_link_libraries(miracle-sinkctl m)
install(TARGETS miracle-sinkctl DESTINATION bin)