1
0
mirror of https://github.com/f4exb/sdrangel.git synced 2026-07-25 19:44:12 -04:00

Code re-organization in two libraries sdrbase and sdrgui in view of core / GUI split

This commit is contained in:
f4exb
2017-10-22 19:12:43 +02:00
parent 561a4c6858
commit fa77ca3fb6
300 changed files with 2525 additions and 898 deletions
@@ -54,12 +54,14 @@ target_link_libraries(inputrtlsdr
${QT_LIBRARIES}
rtlsdr
sdrbase
sdrgui
)
else (BUILD_DEBIAN)
target_link_libraries(inputrtlsdr
${QT_LIBRARIES}
${LIBRTLSDR_LIBRARIES}
sdrbase
sdrgui
)
endif (BUILD_DEBIAN)
+3 -1
View File
@@ -21,6 +21,7 @@ CONFIG(MINGW32):LIBRTLSDRSRC = "D:\softs\librtlsdr"
CONFIG(MINGW64):LIBRTLSDRSRC = "D:\softs\librtlsdr"
INCLUDEPATH += $$PWD
INCLUDEPATH += ../../../sdrbase
INCLUDEPATH += ../../../sdrgui
!macx:INCLUDEPATH += $$LIBRTLSDRSRC/include
macx:INCLUDEPATH += /opt/local/include
@@ -42,7 +43,8 @@ HEADERS += rtlsdrgui.h\
FORMS += rtlsdrgui.ui
LIBS += -L../../../sdrbase/$${build_subdir} -lsdrbase
LIBS += -L../../../sdrgui/$${build_subdir} -lsdrgui
!macx:LIBS += -L../../../librtlsdr/$${build_subdir} -llibrtlsdr
macx:LIBS += -L/opt/local/lib -lrtlsdr
RESOURCES = ../../../sdrbase/resources/res.qrc
RESOURCES = ../../../sdrgui/resources/res.qrc
+3 -3
View File
@@ -65,7 +65,7 @@
<string/>
</property>
<property name="icon">
<iconset resource="../../../sdrbase/resources/res.qrc">
<iconset resource="../../../sdrgui/resources/res.qrc">
<normaloff>:/play.png</normaloff>
<normalon>:/stop.png</normalon>:/play.png</iconset>
</property>
@@ -80,7 +80,7 @@
<string/>
</property>
<property name="icon">
<iconset resource="../../../sdrbase/resources/res.qrc">
<iconset resource="../../../sdrgui/resources/res.qrc">
<normaloff>:/record_off.png</normaloff>:/record_off.png</iconset>
</property>
</widget>
@@ -607,7 +607,7 @@
</customwidget>
</customwidgets>
<resources>
<include location="../../../sdrbase/resources/res.qrc"/>
<include location="../../../sdrgui/resources/res.qrc"/>
</resources>
<connections/>
</ui>