/alps/ipecamera

To get this branch, use:
bzr branch http://darksoft.org/webbzr/alps/ipecamera

« back to all changes in this revision

Viewing changes to apps/CMakeLists.txt

  • Committer: Suren A. Chilingaryan
  • Date: 2015-04-29 02:50:52 UTC
  • Revision ID: csa@suren.me-20150429025052-2ivr7bkemzj7svzi
Added a small grabbing example

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
include_directories(
 
2
    ${CMAKE_SOURCE_DIR}
 
3
    ${PCILIB_INCLUDE_DIRS}
 
4
)
 
5
 
 
6
link_directories(
 
7
    ${CMAKE_BINARY_DIR}
 
8
    ${PCILIB_LIBRARY_DIRS}
 
9
)
 
10
 
 
11
 
 
12
add_executable(grab grab.c)
 
13
target_link_libraries(grab ${PCILIB_LIBRARIES} ipecamera)