mirror of
				https://github.com/f4exb/sdrangel.git
				synced 2025-10-31 13:00:26 -04:00 
			
		
		
		
	Project files with MacOS clang RPATH to use proper paths for shared objects. Minor path updates in favor of loading plugin libs. Deployment script packaging using Qt way(macdeployqt).
		
			
				
	
	
		
			39 lines
		
	
	
		
			954 B
		
	
	
	
		
			Prolog
		
	
	
	
	
	
			
		
		
	
	
			39 lines
		
	
	
		
			954 B
		
	
	
	
		
			Prolog
		
	
	
	
	
	
| #--------------------------------------------------------
 | |
| #
 | |
| # Pro file for Windows builds with Qt Creator
 | |
| #
 | |
| #--------------------------------------------------------
 | |
| 
 | |
| QT += core
 | |
| 
 | |
| TEMPLATE = lib
 | |
| TARGET = mbelib
 | |
| 
 | |
| CONFIG(MSVC):DEFINES += mbelib_EXPORTS
 | |
| 
 | |
| CONFIG(MINGW32):LIBMBELIBSRC = "C:\softs\mbelib"
 | |
| CONFIG(MINGW64):LIBMBELIBSRC = "C:\softs\mbelib"
 | |
| CONFIG(MSVC):LIBMBELIBSRC = "C:\softs\mbelib"
 | |
| CONFIG(macx):LIBMBELIBSRC = "../../deps/mbelib"
 | |
| 
 | |
| macx {
 | |
|     QMAKE_LFLAGS_SONAME = -Wl,-install_name,@rpath/
 | |
| }
 | |
| 
 | |
| INCLUDEPATH += $$LIBMBELIBSRC
 | |
| 
 | |
| SOURCES = $$LIBMBELIBSRC/ambe3600x2400.c\
 | |
| $$LIBMBELIBSRC/ambe3600x2450.c\
 | |
| $$LIBMBELIBSRC/ecc.c\
 | |
| $$LIBMBELIBSRC/imbe7100x4400.c\
 | |
| $$LIBMBELIBSRC/imbe7200x4400.c\
 | |
| $$LIBMBELIBSRC/mbelib.c
 | |
| 
 | |
| HEADERS = $$LIBMBELIBSRC/ambe3600x2400_const.h\
 | |
| $$LIBMBELIBSRC/ambe3600x2450_const.h\
 | |
| $$LIBMBELIBSRC/ecc_const.h\
 | |
| $$LIBMBELIBSRC/imbe7200x4400_const.h\
 | |
| $$LIBMBELIBSRC/mbelib.h\
 | |
| $$LIBMBELIBSRC/export.h\
 | |
| $$LIBMBELIBSRC/mbelib_const.h
 |