easy reading condition
This commit is contained in:
parent
9cece8b55d
commit
f56bbabf6c
2 changed files with 13 additions and 13 deletions
|
@ -3,13 +3,13 @@ SET(LIBNFC_DRIVER_ACR122_PCSC OFF CACHE BOOL "Enable ACR122 support (Depends on
|
||||||
SET(LIBNFC_DRIVER_ACR122_USB ON CACHE BOOL "Enable ACR122 support (Direct USB connection)")
|
SET(LIBNFC_DRIVER_ACR122_USB ON CACHE BOOL "Enable ACR122 support (Direct USB connection)")
|
||||||
SET(LIBNFC_DRIVER_ACR122S ON CACHE BOOL "Enable ACR122S support (Use serial port)")
|
SET(LIBNFC_DRIVER_ACR122S ON CACHE BOOL "Enable ACR122S support (Use serial port)")
|
||||||
SET(LIBNFC_DRIVER_ARYGON ON CACHE BOOL "Enable ARYGON support (Use serial port)")
|
SET(LIBNFC_DRIVER_ARYGON ON CACHE BOOL "Enable ARYGON support (Use serial port)")
|
||||||
IF(NOT UNIX OR APPLE)
|
IF(UNIX AND NOT APPLE)
|
||||||
SET(LIBNFC_DRIVER_PN532_I2C OFF CACHE BOOL "Enable PN532 I2C support (Use I2C bus)")
|
|
||||||
SET(LIBNFC_DRIVER_PN532_SPI OFF CACHE BOOL "Enable PN532 SPI support (Use SPI bus)")
|
|
||||||
ELSE(NOT UNIX OR APPLE)
|
|
||||||
SET(LIBNFC_DRIVER_PN532_I2C ON CACHE BOOL "Enable PN532 I2C support (Use I2C bus)")
|
SET(LIBNFC_DRIVER_PN532_I2C ON CACHE BOOL "Enable PN532 I2C support (Use I2C bus)")
|
||||||
SET(LIBNFC_DRIVER_PN532_SPI ON CACHE BOOL "Enable PN532 SPI support (Use SPI bus)")
|
SET(LIBNFC_DRIVER_PN532_SPI ON CACHE BOOL "Enable PN532 SPI support (Use SPI bus)")
|
||||||
ENDIF(NOT UNIX OR APPLE)
|
ELSE(UNIX AND NOT APPLE)
|
||||||
|
SET(LIBNFC_DRIVER_PN532_I2C OFF CACHE BOOL "Enable PN532 I2C support (Use I2C bus)")
|
||||||
|
SET(LIBNFC_DRIVER_PN532_SPI OFF CACHE BOOL "Enable PN532 SPI support (Use SPI bus)")
|
||||||
|
ENDIF(UNIX AND NOT APPLE)
|
||||||
SET(LIBNFC_DRIVER_PN532_UART ON CACHE BOOL "Enable PN532 UART support (Use serial port)")
|
SET(LIBNFC_DRIVER_PN532_UART ON CACHE BOOL "Enable PN532 UART support (Use serial port)")
|
||||||
SET(LIBNFC_DRIVER_PN53X_USB ON CACHE BOOL "Enable PN531 and PN531 USB support (Depends on libusb)")
|
SET(LIBNFC_DRIVER_PN53X_USB ON CACHE BOOL "Enable PN531 and PN531 USB support (Depends on libusb)")
|
||||||
|
|
||||||
|
|
|
@ -29,23 +29,23 @@ IF(UART_REQUIRED)
|
||||||
ENDIF(UART_REQUIRED)
|
ENDIF(UART_REQUIRED)
|
||||||
|
|
||||||
IF(I2C_REQUIRED)
|
IF(I2C_REQUIRED)
|
||||||
IF(NOT UNIX OR APPLE)
|
IF(UNIX AND NOT APPLE)
|
||||||
|
LIST(APPEND BUSES_SOURCES buses/i2c)
|
||||||
|
ELSE(UNIX AND NOT APPLE)
|
||||||
# Only Linux is supported at the moment
|
# Only Linux is supported at the moment
|
||||||
#LIST(APPEND BUSES_SOURCES ../contrib/win32/libnfc/buses/i2c)
|
#LIST(APPEND BUSES_SOURCES ../contrib/win32/libnfc/buses/i2c)
|
||||||
MESSAGE( FATAL_ERROR "I2C is only (yet) supported in Linux!" )
|
MESSAGE( FATAL_ERROR "I2C is only (yet) supported in Linux!" )
|
||||||
ELSE(NOT UNIX OR APPLE)
|
ENDIF(UNIX AND NOT APPLE)
|
||||||
LIST(APPEND BUSES_SOURCES buses/i2c)
|
|
||||||
ENDIF(NOT UNIX OR APPLE)
|
|
||||||
ENDIF(I2C_REQUIRED)
|
ENDIF(I2C_REQUIRED)
|
||||||
|
|
||||||
IF(SPI_REQUIRED)
|
IF(SPI_REQUIRED)
|
||||||
IF(NOT UNIX OR APPLE)
|
IF(UNIX AND NOT APPLE)
|
||||||
|
LIST(APPEND BUSES_SOURCES buses/spi)
|
||||||
|
ELSE(UNIX AND NOT APPLE)
|
||||||
# Only Linux is supported at the moment
|
# Only Linux is supported at the moment
|
||||||
#LIST(APPEND BUSES_SOURCES ../contrib/win32/libnfc/buses/spi)
|
#LIST(APPEND BUSES_SOURCES ../contrib/win32/libnfc/buses/spi)
|
||||||
MESSAGE( FATAL_ERROR "SPI is only (yet) supported in Linux!" )
|
MESSAGE( FATAL_ERROR "SPI is only (yet) supported in Linux!" )
|
||||||
ELSE(NOT UNIX OR APPLE)
|
ENDIF(UNIX AND NOT APPLE)
|
||||||
LIST(APPEND BUSES_SOURCES buses/spi)
|
|
||||||
ENDIF(NOT UNIX OR APPLE)
|
|
||||||
ENDIF(SPI_REQUIRED)
|
ENDIF(SPI_REQUIRED)
|
||||||
|
|
||||||
INCLUDE_DIRECTORIES(${CMAKE_CURRENT_SOURCE_DIR}/buses)
|
INCLUDE_DIRECTORIES(${CMAKE_CURRENT_SOURCE_DIR}/buses)
|
||||||
|
|
Loading…
Reference in a new issue