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 641B

1234567891011121314151617181920
  1. include_directories(.)
  2. set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++14 -pthread -I${PCSCLITE_INCLUDE_DIR} -I${CMAKE_SOURCE_DIR}/src/include")
  3. set(SOURCE_FILES
  4. DBO/ScCommand.cpp
  5. include/ScCommand.h
  6. include/ScCommand.hxx
  7. DBO/ScByteArray.cpp
  8. include/ScByteArray.h
  9. include/ScByteArray.hxx
  10. DBO/ScBasicCommand.cpp
  11. include/ScBasicCommand.h
  12. include/ScBasicCommand.hxx
  13. DBO/ScResult.cpp
  14. include/ScResult.h
  15. include/ScResult.hxx
  16. DataAccess/ScReader.cpp
  17. include/ScReader.h
  18. include/ScReader.hxx)
  19. add_library(pcsc_cpptools SHARED ${SOURCE_FILES} include/ScHex.h DBO/ScHex.cpp)
  20. target_link_libraries(pcsc_cpptools pcsclite)