It cow compile using CMake.

This commit is contained in:
Romuald Conty 2009-11-04 12:03:49 +00:00
parent 06a76f6470
commit c9689c74fb
5 changed files with 30 additions and 26 deletions

View file

@ -1,19 +0,0 @@
SET(LIBRARY-SOURCES arygon pn532_uart)
# find PCSC library and headers
IF(LIBNFC_PCSC)
FIND_PACKAGE(PCSC REQUIRED)
ADD_DEFINITIONS("-DHAVE_PCSC_LITE=1")
SET(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} ${PCSC_CFLAGS_OTHER}")
SET(LIBRARY-SOURCES ${LIBRARY-SOURCES} "acr122")
ENDIF(LIBNFC_PCSC)
# find libusb library and headers
IF(LIBNFC_USB)
FIND_PACKAGE(LIBUSB REQUIRED)
ADD_DEFINITIONS("-DHAVE_LIBUSB=1")
SET(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} ${LIBUSB_CFLAGS_OTHER}")
SET(LIBRARY-SOURCES ${LIBRARY-SOURCES} "pn531" "pn533")
ENDIF(LIBNFC_USB)
INCLUDE_DIRECTORIES(${CMAKE_CURRENT_SOURCE_DIR}/lib)