File tree Expand file tree Collapse file tree 3 files changed +7
-7
lines changed Expand file tree Collapse file tree 3 files changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -13,10 +13,4 @@ set(CMAKE_MODULE_PATH "${CMAKE_CURRENT_SOURCE_DIR}/cmake/")
13
13
set (SCANBOTSDK_DIR "${CMAKE_CURRENT_BINARY_DIR} /scanbotsdk" )
14
14
find_package (ScanbotSDK REQUIRED )
15
15
16
- add_library (scanbotsdk SHARED IMPORTED )
17
- set_target_properties (scanbotsdk PROPERTIES
18
- IMPORTED_LOCATION "${ScanbotSDK_LIBS} "
19
- INTERFACE_INCLUDE_DIRECTORIES "${ScanbotSDK_INCLUDE_DIRS} "
20
- )
21
-
22
16
add_subdirectory (barcode )
Original file line number Diff line number Diff line change @@ -44,7 +44,7 @@ cmake -DSCANBOTSDK_VERSION=<SCANBOTSDK_VERSION> -DSCANBOTSDK_API_TOKEN=<SCANBOTS
44
44
make
45
45
```
46
46
47
- Replace ` SCANBOTSDK_VERSION ` and ` SCANBOTSDK_API_TOKEN ` with the avlues you received from us.
47
+ Replace ` SCANBOTSDK_VERSION ` and ` SCANBOTSDK_API_TOKEN ` with the values you received from us.
48
48
49
49
# Running the Examples
50
50
See the ` README.md ` files in the individual example directories for instructions on how to run them.
Original file line number Diff line number Diff line change @@ -39,3 +39,9 @@ find_path(ScanbotSDK_INCLUDE_DIRS
39
39
40
40
find_package_handle_standard_args (ScanbotSDK
41
41
REQUIRED_VARS ScanbotSDK_LIBS ScanbotSDK_INCLUDE_DIRS )
42
+
43
+ add_library (scanbotsdk SHARED IMPORTED )
44
+ set_target_properties (scanbotsdk PROPERTIES
45
+ IMPORTED_LOCATION "${ScanbotSDK_LIBS} "
46
+ INTERFACE_INCLUDE_DIRECTORIES "${ScanbotSDK_INCLUDE_DIRS} "
47
+ )
You can’t perform that action at this time.
0 commit comments