-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
38 changed files
with
111 additions
and
181 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,13 @@ | ||
# minimum required cmake version: 3.1.15 support vs2019 | ||
|
||
|
||
cmake_minimum_required(VERSION 3.1.15) | ||
project(ob_imu) | ||
|
||
add_executable(ob_imu imu.cpp) | ||
|
||
set_property(TARGET ob_imu PROPERTY CXX_STANDARD 11) | ||
target_link_libraries(ob_imu OrbbecSDK ) | ||
target_link_libraries(ob_imu OrbbecSDK) | ||
|
||
IF(USE_PROJECT_FOLDERS) | ||
set_target_properties (ob_imu PROPERTIES FOLDER "Examples") | ||
ENDIF() | ||
set_target_properties(ob_imu PROPERTIES FOLDER "Examples") | ||
|
||
# ob_install_example_target(ob_imu) | ||
# ob_install_example_current_source("/cpp/1.stream.imu") | ||
# ob_install_example_target(ob_imu) ob_install_example_current_source("/cpp/1.stream.imu") |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
cmake_minimum_required(VERSION 3.1.15) | ||
|
||
project(ob_enumerate_c) | ||
add_executable(ob_enumerate_c enumerate.c) | ||
|
||
target_link_libraries(ob_enumerate_c OrbbecSDK) | ||
|
||
set_target_properties(ob_enumerate_c PROPERTIES FOLDER "Examples_c") | ||
set_target_properties(ob_enumerate_c PROPERTIES VS_DEBUGGER_WORKING_DIRECTORY "${CMAKE_RUNTIME_OUTPUT_DIRECTORY}") | ||
|
||
# ob_install_example_target(ob_enumerate_c) ob_install_example_current_source("/c/2.c_enumerate") |
File renamed without changes.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
cmake_minimum_required(VERSION 3.1.15) | ||
|
||
project(ob_depth_c) | ||
add_executable(ob_depth_c depth.c) | ||
|
||
target_link_libraries(ob_depth_c OrbbecSDK ${OpenCV_LIBS}) | ||
|
||
set_target_properties(ob_depth_c PROPERTIES FOLDER "Examples_c") | ||
set_target_properties(ob_depth_c PROPERTIES VS_DEBUGGER_WORKING_DIRECTORY "${CMAKE_RUNTIME_OUTPUT_DIRECTORY}") | ||
|
||
# ob_install_example_target(ob_depth_c) ob_install_example_current_source("/c/1.c_depth") |
File renamed without changes.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
|
||
cmake_minimum_required(VERSION 3.1.15) | ||
project(ob_examples_common) | ||
|
||
add_library(ob_examples_common INTERFACE) | ||
|
||
target_include_directories(ob_examples_common INTERFACE ${CMAKE_CURRENT_SOURCE_DIR}) | ||
|
||
add_library(ob::examples::common ALIAS ob_examples_common) | ||
set_target_properties(ob_examples_common PROPERTIES FOLDER "Examples") |
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.