2023-04-15 12:01:27 -04:00
|
|
|
project(audiocatsiso)
|
|
|
|
|
|
|
|
set(audiocatsiso_SOURCES
|
|
|
|
audiocatinputworker.cpp
|
|
|
|
audiocatoutputworker.cpp
|
|
|
|
audiocatsiso.cpp
|
|
|
|
audiocatsisoplugin.cpp
|
|
|
|
audiocatsisosettings.cpp
|
|
|
|
audiocatsisowebapiadapter.cpp
|
2023-06-04 19:06:12 -04:00
|
|
|
audiocatsisohamlib.cpp
|
2023-06-09 12:57:47 -04:00
|
|
|
audiocatsisocatworker.cpp
|
2023-04-15 12:01:27 -04:00
|
|
|
)
|
|
|
|
|
|
|
|
set(audiocatsiso_HEADERS
|
|
|
|
audiocatinputworker.h
|
|
|
|
audiocatoutputworker.h
|
|
|
|
audiocatsiso.h
|
|
|
|
audiocatsisoplugin.h
|
|
|
|
audiocatsisosettings.h
|
|
|
|
audiocatsisowebapiadapter.h
|
2023-06-04 19:06:12 -04:00
|
|
|
audiocatsisohamlib.h
|
2023-06-09 12:57:47 -04:00
|
|
|
audiocatsisocatworker.h
|
2023-04-15 12:01:27 -04:00
|
|
|
)
|
|
|
|
|
|
|
|
include_directories(
|
|
|
|
${CMAKE_SOURCE_DIR}/swagger/sdrangel/code/qt5/client
|
|
|
|
${CMAKE_SOURCE_DIR}/devices
|
2023-06-03 06:25:50 -04:00
|
|
|
${hamlib_INCLUDE_DIRS}
|
2023-04-15 12:01:27 -04:00
|
|
|
)
|
|
|
|
|
|
|
|
if (NOT SERVER_MODE)
|
|
|
|
set (audiocatsiso_SOURCES
|
|
|
|
${audiocatsiso_SOURCES}
|
|
|
|
audiocatsisogui.cpp
|
|
|
|
audiocatsisogui.ui
|
2023-06-07 23:04:51 -04:00
|
|
|
audiocatsisocatdialog.cpp
|
|
|
|
audiocatsisocatdialog.ui
|
2023-04-15 12:01:27 -04:00
|
|
|
)
|
|
|
|
set(audiocatsiso_HEADERS
|
|
|
|
${audiocatsiso_HEADERS}
|
|
|
|
audiocatsisogui.h
|
2023-06-07 23:04:51 -04:00
|
|
|
audiocatsisocatdialog.h
|
2023-04-15 12:01:27 -04:00
|
|
|
)
|
|
|
|
set(TARGET_NAME mimoaudiocatsiso)
|
|
|
|
set(TARGET_LIB "Qt::Widgets")
|
|
|
|
set(TARGET_LIB_GUI "sdrgui")
|
|
|
|
set(INSTALL_FOLDER ${INSTALL_PLUGINS_DIR})
|
|
|
|
else()
|
|
|
|
set(TARGET_NAME mimoaudiocatsisosrv)
|
|
|
|
set(TARGET_LIB "")
|
|
|
|
set(TARGET_LIB_GUI "")
|
|
|
|
set(INSTALL_FOLDER ${INSTALL_PLUGINSSRV_DIR})
|
|
|
|
endif()
|
|
|
|
|
|
|
|
add_library(${TARGET_NAME} SHARED
|
|
|
|
${audiocatsiso_SOURCES}
|
|
|
|
)
|
|
|
|
|
|
|
|
target_link_libraries(${TARGET_NAME}
|
|
|
|
Qt::Core
|
|
|
|
${TARGET_LIB}
|
|
|
|
sdrbase
|
|
|
|
${TARGET_LIB_GUI}
|
|
|
|
swagger
|
2023-06-03 06:25:50 -04:00
|
|
|
${hamlib_LIBRARIES}
|
2023-04-15 12:01:27 -04:00
|
|
|
)
|
|
|
|
|
|
|
|
install(TARGETS ${TARGET_NAME} DESTINATION ${INSTALL_FOLDER})
|
|
|
|
|
|
|
|
# Install debug symbols
|
|
|
|
if (WIN32)
|
|
|
|
install(FILES $<TARGET_PDB_FILE:${TARGET_NAME}> CONFIGURATIONS Debug RelWithDebInfo DESTINATION ${INSTALL_FOLDER} )
|
|
|
|
endif()
|