2 changed files with 17 additions and 6 deletions
@ -0,0 +1,17 @@ |
|||
include_directories (${CMAKE_SOURCE_DIR}/src) |
|||
|
|||
file( |
|||
GLOB |
|||
usage_examples |
|||
*.cpp |
|||
) |
|||
|
|||
foreach(f ${usage_examples}) |
|||
get_filename_component(exampleName ${f} NAME_WE) |
|||
add_executable(${exampleName} ${f}) |
|||
target_link_libraries(${exampleName} ${OpenCV_LIBS}) |
|||
install(PROGRAMS ${CMAKE_CURRENT_BINARY_DIR}/${exampleName} |
|||
DESTINATION bin |
|||
RENAME ${CMAKE_PROJECT_NAME}-${exampleName}) |
|||
endforeach(f) |
|||
|
|||
Loading…
Reference in new issue