MYNT-EYE-S-SDK/tools/dataset/CMakeLists.txt
2018-04-25 12:08:25 +08:00

23 lines
485 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}"
)
## record
add_executable(record record.cc dataset.cc)
target_link_libraries(record mynteye ${OpenCV_LIBS})
target_create_scripts(record DLL_SEARCH_PATHS
${PRO_DIR}/_install/bin
${OpenCV_LIB_SEARCH_PATH}
)
if(OS_WIN)
target_compile_definitions(record
PUBLIC GLOG_NO_ABBREVIATED_SEVERITIES
)
endif()