Add device layer
This commit is contained in:
22
samples/device/CMakeLists.txt
Normal file
22
samples/device/CMakeLists.txt
Normal file
@@ -0,0 +1,22 @@
|
||||
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}"
|
||||
)
|
||||
|
||||
include_directories(
|
||||
${PRO_DIR}/src
|
||||
)
|
||||
|
||||
## camera_d
|
||||
|
||||
add_executable(camera_d camera.cc)
|
||||
target_link_libraries(camera_d mynteye ${OpenCV_LIBS})
|
||||
|
||||
if(OS_WIN)
|
||||
target_compile_definitions(camera_d
|
||||
PUBLIC GLOG_NO_ABBREVIATED_SEVERITIES
|
||||
)
|
||||
endif()
|
||||
13
samples/device/camera.cc
Normal file
13
samples/device/camera.cc
Normal file
@@ -0,0 +1,13 @@
|
||||
#include "glog_init.h" // NOLINT
|
||||
|
||||
#include "device/context.h"
|
||||
|
||||
MYNTEYE_USE_NAMESPACE
|
||||
|
||||
int main(int argc, char *argv[]) {
|
||||
glog_init _(argc, argv);
|
||||
|
||||
Context context;
|
||||
|
||||
return 0;
|
||||
}
|
||||
Reference in New Issue
Block a user