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

12345678
  1. enable_testing()
  2. include_directories(${CHECK_INCLUDE_DIRS})
  3. set(LIBS ${LIBS} pcsc_cpptools)
  4. include_directories(. ../src)
  5. set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++14 -pthread -I/usr/include/PCSC -I${CMAKE_SOURCE_DIR}/src/include")
  6. add_executable(test_pcsc_cpp_tools test_pcsc_cpp_tools.cpp)
  7. target_link_libraries(test_pcsc_cpp_tools ${LIBS})
  8. add_test(test_pcsc_cpp_tools ${CMAKE_CURRENT_BINARY_DIR}/test_pcsc_cpp_tools)