You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

CMakeLists.txt 495B

1234567891011121314151617
  1. include_directories(.)
  2. set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++11")
  3. set(SOURCE_FILES
  4. DBO/Result.hxx
  5. DBO/Result.h
  6. Business/LibNfc.cpp
  7. Business/LibNfc.h
  8. Business/NfcDevice.cpp
  9. Business/NfcDevice.h
  10. Business/FreeFareDevice.cpp
  11. Business/FreeFareDevice.h
  12. Business/FreeFareTag.cpp
  13. Business/FreeFareTag.h
  14. )
  15. add_library(${PROJECT_NAME} SHARED ${SOURCE_FILES})
  16. target_link_libraries(${PROJECT_NAME} ${LIBS})