Perseus server: added libusb include and lib

This commit is contained in:
f4exb 2019-05-31 09:58:34 +02:00
parent da82954e74
commit af32260b51
2 changed files with 4 additions and 0 deletions

View File

@ -11,6 +11,7 @@ set(perseusdevice_HEADERS
)
include_directories(
${LIBUSB_INCLUDE_DIR}
${LIBPERSEUS_INCLUDE_DIR}
)
@ -22,6 +23,7 @@ set_target_properties(perseusdevice
PROPERTIES DEFINE_SYMBOL "devices_EXPORTS")
target_link_libraries(perseusdevice
${LIBUSB_LIBRARIES}
${LIBPERSEUS_LIBRARIES}
sdrbase
)

View File

@ -17,6 +17,7 @@ set(perseus_HEADERS
include_directories(
${CMAKE_SOURCE_DIR}/swagger/sdrangel/code/qt5/client
${CMAKE_SOURCE_DIR}/devices
${LIBUSB_INCLUDE_DIR}
${LIBPERSEUS_INCLUDE_DIR}
)
@ -53,6 +54,7 @@ target_link_libraries(${TARGET_NAME}
sdrbase
${TARGET_LIB_GUI}
swagger
${LIBUSB_LIBRARIES}
${LIBPERSEUS_LIBRARIES}
perseusdevice
)