CMake: only compile usbbus.c when (at least) one USB driver is enabled
This commit is contained in:
parent
b6b356b948
commit
a422ae2211
2 changed files with 4 additions and 3 deletions
|
|
@ -12,9 +12,9 @@ SET(CHIPS_SOURCES chips/pn53x)
|
|||
INCLUDE_DIRECTORIES(${CMAKE_CURRENT_SOURCE_DIR}/chips)
|
||||
|
||||
# Library's buses
|
||||
IF(LIBUSB_FOUND)
|
||||
SET(BUSES_SOURCES buses/usbbus)
|
||||
ENDIF(LIBUSB_FOUND)
|
||||
IF(USB_REQUIRED)
|
||||
LIST(APPEND BUSES_SOURCES buses/usbbus)
|
||||
ENDIF(USB_REQUIRED)
|
||||
|
||||
IF(UART_REQUIRED)
|
||||
LIST(APPEND BUSES_SOURCES buses/uart)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue