mirror of
https://github.com/hyperion-project/hyperion.ng.git
synced 2025-03-01 10:33:28 +00:00
14 lines
268 B
CMake
14 lines
268 B
CMake
|
|
# Find the BCM-package (VC control)
|
|
find_package(BCM REQUIRED)
|
|
|
|
# Add the include dirs to the search path
|
|
include_directories(${BCM_INCLUDE_DIRS})
|
|
|
|
add_executable(dispmanx-png
|
|
dispmanx-png.cpp)
|
|
|
|
target_link_libraries(dispmanx-png
|
|
hyperion-png
|
|
${BCM_LIBRARIES})
|