mirror of
				https://github.com/AlexandreRouma/SDRPlusPlus.git
				synced 2025-10-31 08:58:13 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			30 lines
		
	
	
		
			896 B
		
	
	
	
		
			CMake
		
	
	
	
	
	
			
		
		
	
	
			30 lines
		
	
	
		
			896 B
		
	
	
	
		
			CMake
		
	
	
	
	
	
| cmake_minimum_required(VERSION 3.13)
 | |
| project(hackrf_source)
 | |
| 
 | |
| file(GLOB SRC "src/*.cpp")
 | |
| 
 | |
| include(${SDRPP_MODULE_CMAKE})
 | |
| 
 | |
| if (MSVC)
 | |
|     # Lib path
 | |
|     target_link_directories(hackrf_source PRIVATE "C:/Program Files/PothosSDR/bin/")
 | |
| 
 | |
|     target_link_libraries(hackrf_source PRIVATE hackrf)
 | |
| elseif (ANDROID)
 | |
|     target_include_directories(hackrf_source PUBLIC
 | |
|         /sdr-kit/${ANDROID_ABI}/include/libhackrf
 | |
|     )
 | |
| 
 | |
|     target_link_libraries(hackrf_source PUBLIC
 | |
|         /sdr-kit/${ANDROID_ABI}/lib/libusb1.0.so
 | |
|         /sdr-kit/${ANDROID_ABI}/lib/libhackrf.so
 | |
|     )
 | |
| else (MSVC)
 | |
|     find_package(PkgConfig)
 | |
| 
 | |
|     pkg_check_modules(LIBHACKRF REQUIRED libhackrf)
 | |
| 
 | |
|     target_include_directories(hackrf_source PRIVATE ${LIBHACKRF_INCLUDE_DIRS})
 | |
|     target_link_directories(hackrf_source PRIVATE ${LIBHACKRF_LIBRARY_DIRS})
 | |
|     target_link_libraries(hackrf_source PRIVATE ${LIBHACKRF_LIBRARIES})
 | |
| endif () |