mirror of
				https://github.com/f4exb/sdrangel.git
				synced 2025-11-03 21:20:31 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			31 lines
		
	
	
		
			472 B
		
	
	
	
		
			CMake
		
	
	
	
	
	
			
		
		
	
	
			31 lines
		
	
	
		
			472 B
		
	
	
	
		
			CMake
		
	
	
	
	
	
project(hackrf)
 | 
						|
 | 
						|
find_package(LibUSB)
 | 
						|
 | 
						|
set(hackrf_SOURCES
 | 
						|
    ${LIBHACKRFSRC}/libhackrf/src/hackrf.c
 | 
						|
)
 | 
						|
 | 
						|
set(hackrf_HEADERS
 | 
						|
    ${LIBHACKRFSRC}/libhackrf/src/hackrf.h
 | 
						|
)
 | 
						|
 | 
						|
include_directories(
 | 
						|
    .
 | 
						|
    ${CMAKE_CURRENT_BINARY_DIR}
 | 
						|
    ${LIBUSB_INCLUDE_DIR}    
 | 
						|
    ${LIBHACKRFSRC}/libhackrf/src
 | 
						|
)
 | 
						|
 | 
						|
add_definitions(-DQT_SHARED)
 | 
						|
 | 
						|
add_library(hackrf SHARED
 | 
						|
    ${hackrf_SOURCES}
 | 
						|
)
 | 
						|
 | 
						|
target_link_libraries(hackrf
 | 
						|
    ${LIBUSB_LIBRARIES}
 | 
						|
)
 | 
						|
 | 
						|
install(TARGETS hackrf DESTINATION lib)
 |