23 lines
484 B
CMake
23 lines
484 B
CMake
get_filename_component(DIR_NAME ${CMAKE_CURRENT_LIST_DIR} NAME)
|
|
|
|
set_outdir(
|
|
"${OUT_DIR}/lib/${DIR_NAME}"
|
|
"${OUT_DIR}/lib/${DIR_NAME}"
|
|
"${OUT_DIR}/bin/${DIR_NAME}"
|
|
)
|
|
|
|
## camera_d
|
|
|
|
add_executable(camera_d camera.cc)
|
|
target_link_libraries(camera_d mynteye ${OpenCV_LIBS})
|
|
target_create_scripts(camera_d DLL_SEARCH_PATHS
|
|
${PRO_DIR}/_install/bin
|
|
${OpenCV_LIB_SEARCH_PATH}
|
|
)
|
|
|
|
if(OS_WIN)
|
|
target_compile_definitions(camera_d
|
|
PUBLIC GLOG_NO_ABBREVIATED_SEVERITIES
|
|
)
|
|
endif()
|