Skip to content

Commit

Permalink
Fix missing FREEBOX entry in backend web server.
Browse files Browse the repository at this point in the history
The USING_IPTV define needs to be PUBLIC so it will propagate to other
targets.

Fixes #1012
  • Loading branch information
linuxdude42 committed Jan 2, 2025
1 parent a47343b commit 1ade817
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion mythtv/libs/libmythtv/cmake/Backend.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,10 @@ if(NOT ENABLE_BACKEND)
endif()

target_link_libraries(mythtv PUBLIC PkgConfig::LZO2)
target_compile_definitions(mythtv PRIVATE USING_BACKEND USING_IPTV)
target_compile_definitions(
mythtv
PUBLIC USING_IPTV
PRIVATE USING_BACKEND)
target_sources(
mythtv
PRIVATE # Channel stuff
Expand Down

0 comments on commit 1ade817

Please sign in to comment.