Skip to content

Commit

Permalink
Merge branch 'msvc2' into msvc
Browse files Browse the repository at this point in the history
  • Loading branch information
gelotus committed Jul 8, 2020
2 parents 7ad18a2 + 1077228 commit e37d24e
Show file tree
Hide file tree
Showing 8 changed files with 33 additions and 26 deletions.
6 changes: 2 additions & 4 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@
*.lo
*.o
*~
.vs/
CMakeSettings.json
Doxyfile
INSTALL
aclocal.m4
Expand Down Expand Up @@ -60,7 +62,3 @@ utils/nfc-mfultralight
utils/nfc-read-forum-tag3
utils/nfc-relay-picc
utils/nfc-scan-device

.vs/

CMakeSettings.json
19 changes: 14 additions & 5 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,18 @@ matrix:
- libusb-dev
- doxygen
- cmake
script:
- mkdir build && cd build && cmake -DCMAKE_INSTALL_PREFIX=~/.local .. && make -j2 && make install

- os: linux
dist: bionic
compiler:
- clang
addons:
apt:
packages:
- libusb-dev
- doxygen
script:
- autoreconf -vfi && mkdir build && cd build && ../configure --prefix=$HOME/.local/ && make -j2 && make install

Expand All @@ -47,7 +59,6 @@ matrix:
packages:
- libusb-dev
- doxygen
- cmake
script:
- autoreconf -vfi && mkdir build && cd build && ../configure --prefix=$HOME/.local/ && make -j2 && make install

Expand All @@ -56,8 +67,7 @@ matrix:
compiler:
- clang
before_install:
- brew update
- brew install autoconf automake cmake doxygen gettext libusb libusb-compat m4 pcre2 pkg-config
- brew install doxygen libusb-compat
script:
- mkdir build && cd build && cmake -DCMAKE_INSTALL_PREFIX=~/.local .. && make -j2 && make install

Expand All @@ -66,7 +76,6 @@ matrix:
compiler:
- clang
before_install:
- brew update
- brew install autoconf automake doxygen gettext libusb libusb-compat m4 pcre2 pkg-config
- brew install doxygen libusb-compat m4
script:
- autoreconf -vfi && mkdir build && cd build && ../configure --prefix=$HOME/.local/ && make -j2 && make install
10 changes: 5 additions & 5 deletions cmake/modules/LibnfcDrivers.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -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_ACR122S ON CACHE BOOL "Enable ACR122S support (Use serial port)")
SET(LIBNFC_DRIVER_ARYGON ON CACHE BOOL "Enable ARYGON support (Use serial port)")
IF(NOT UNIX OR 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)
IF(UNIX AND NOT APPLE)
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)")
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_PN53X_USB ON CACHE BOOL "Enable PN531 and PN531 USB support (Depends on libusb)")

Expand Down
2 changes: 1 addition & 1 deletion contrib/win32/getopt.c
Original file line number Diff line number Diff line change
Expand Up @@ -103,4 +103,4 @@ int getopt(int nargc, char * const nargv[], const char *ostr)
++optind;
}
return (optopt); /* dump back option letter */
}
}
2 changes: 1 addition & 1 deletion contrib/win32/getopt.h
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,4 @@ extern char *optarg; /* argument associated with option */

int getopt(int nargc, char * const nargv[], const char *ostr);

#endif
#endif
2 changes: 1 addition & 1 deletion contrib/win32/nfc.def
Original file line number Diff line number Diff line change
Expand Up @@ -54,4 +54,4 @@ EXPORTS
pn53x_transceive
pn532_SAMConfiguration
pn53x_read_register
pn53x_write_register
pn53x_write_register
2 changes: 1 addition & 1 deletion contrib/win32/nfc_msvc.def
Original file line number Diff line number Diff line change
Expand Up @@ -54,4 +54,4 @@ EXPORTS
pn53x_transceive
pn532_SAMConfiguration
pn53x_read_register
pn53x_write_register
pn53x_write_register
16 changes: 8 additions & 8 deletions libnfc/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -29,23 +29,23 @@ IF(UART_REQUIRED)
ENDIF(UART_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
#LIST(APPEND BUSES_SOURCES ../contrib/win32/libnfc/buses/i2c)
MESSAGE( FATAL_ERROR "I2C is only (yet) supported in Linux!" )
ELSE(NOT UNIX OR APPLE)
LIST(APPEND BUSES_SOURCES buses/i2c)
ENDIF(NOT UNIX OR APPLE)
ENDIF(UNIX AND NOT APPLE)
ENDIF(I2C_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
#LIST(APPEND BUSES_SOURCES ../contrib/win32/libnfc/buses/spi)
MESSAGE( FATAL_ERROR "SPI is only (yet) supported in Linux!" )
ELSE(NOT UNIX OR APPLE)
LIST(APPEND BUSES_SOURCES buses/spi)
ENDIF(NOT UNIX OR APPLE)
ENDIF(UNIX AND NOT APPLE)
ENDIF(SPI_REQUIRED)

INCLUDE_DIRECTORIES(${CMAKE_CURRENT_SOURCE_DIR}/buses)
Expand Down

0 comments on commit e37d24e

Please sign in to comment.