mirror of
				https://github.com/hyperion-project/hyperion.ng.git
				synced 2025-03-01 10:33:28 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			20 lines
		
	
	
		
			483 B
		
	
	
	
		
			CMake
		
	
	
	
	
	
			
		
		
	
	
			20 lines
		
	
	
		
			483 B
		
	
	
	
		
			CMake
		
	
	
	
	
	
# this is only available on real pi
 | 
						|
if("${PLATFORM}" MATCHES rpi)
 | 
						|
 | 
						|
	find_package(Qt${QT_VERSION_MAJOR} COMPONENTS Gui REQUIRED)
 | 
						|
 | 
						|
	# Find the BCM-package (VC control)
 | 
						|
	find_package(BCM REQUIRED)
 | 
						|
	include_directories(${BCM_INCLUDE_DIRS})
 | 
						|
 | 
						|
	add_definitions(${QT_DEFINITIONS})
 | 
						|
	link_directories(${CMAKE_FIND_ROOT_PATH}/lib/arm-linux-gnueabihf)
 | 
						|
 | 
						|
	add_executable(dispmanx2png
 | 
						|
		dispmanx2png.cpp)
 | 
						|
 | 
						|
	target_link_libraries(dispmanx2png
 | 
						|
		dispmanx-grabber
 | 
						|
		Qt${QT_VERSION_MAJOR::Gui)
 | 
						|
endif()
 |