CMakeLists.txt 234 B

12345678910111213
  1. include_directories(
  2. ${CMAKE_SOURCE_DIR}
  3. ${PCILIB_INCLUDE_DIRS}
  4. )
  5. link_directories(
  6. ${CMAKE_BINARY_DIR}
  7. ${PCILIB_LIBRARY_DIRS}
  8. )
  9. add_executable(grab grab.c)
  10. target_link_libraries(grab ${PCILIB_LIBRARIES} ipecamera)