Commit da2c772526cf589f6bd5b797347f7b66a4f48793
1 parent
e29bb329
added FindIPC2013.cmake
Showing
1 changed file
with
14 additions
and
0 deletions
share/openbr/cmake/FindIPC2013.cmake
0 → 100644
| 1 | +# ================================================================ | |
| 2 | +# The Intel Perceptual Computing SDK 2013 CMake configuration file | |
| 3 | +# | |
| 4 | +# Usage from an external project: | |
| 5 | +# In your CMakeLists.txt, add these lines: | |
| 6 | +# | |
| 7 | +# find_package(IPC2013 REQUIRED) | |
| 8 | +# target_link_libraries(MY_TARGET ${IPC2013_LIBS}) | |
| 9 | +# ================================================================ | |
| 10 | + | |
| 11 | +find_path(IPC2013_DIR include/pxcimage.h "C:/Program Files/Intel/PCSDK") | |
| 12 | +include_directories(${IPC2013_DIR}/include) | |
| 13 | +link_directories(${IPC2013_DIR}/lib/x64) | |
| 14 | +set(IPC2013_LIBS libpxc) | ... | ... |