2018-04-15 09:59:51 +03:00
|
|
|
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}"
|
|
|
|
)
|
|
|
|
|
|
|
|
## record
|
|
|
|
|
2018-04-15 14:18:21 +03:00
|
|
|
add_executable(record record.cc dataset.cc)
|
2018-04-15 09:59:51 +03:00
|
|
|
target_link_libraries(record mynteye ${OpenCV_LIBS})
|
2018-04-25 07:08:25 +03:00
|
|
|
target_create_scripts(record DLL_SEARCH_PATHS
|
|
|
|
${PRO_DIR}/_install/bin
|
|
|
|
${OpenCV_LIB_SEARCH_PATH}
|
|
|
|
)
|
2018-04-15 09:59:51 +03:00
|
|
|
|
|
|
|
if(OS_WIN)
|
|
|
|
target_compile_definitions(record
|
|
|
|
PUBLIC GLOG_NO_ABBREVIATED_SEVERITIES
|
|
|
|
)
|
|
|
|
endif()
|