diff --git a/README.md b/README.md index aa51d8deff4b09494606e501b61d3594a6ec16a7..8961a7f4b134c619aad56e0dc0b7370bd2526a5e 100644 --- a/README.md +++ b/README.md @@ -9,24 +9,27 @@ The RF60X-SDK consists of two parts: Developers who want to use ready-made RF60X-SDK libraries when creating their own applications for working with laser scanners of the RF60X series can download the latest libraries (download the RF60X-SDK libraries for C, C++, C#), as well as see examples of their use (see Examples for C/C++, Examples for C#). Developers who prefer to compile RF60X-SDK libraries from sources, the manual contains instructions for downloading sources (see Download project) and installing the necessary software. Download project + + -2. Open a command prompt/terminal on your computer: -- On Linux, click on the launchpad and look for «terminal» terminal -- In OS X, press commandspace and find «terminal» terminal -- On Windows, click the Start menu and find the «command line» cmd. +1. Open a command prompt/terminal on your computer: + +- On Windows, click the Start menu and find the «command line» cmd. -3. Download the project: +2. Download the project: ```bash git clone https://corp.riftek.com/gitlab/rfsdk60x/sdk/rf60x-sdk.git cd RF60X-SDK ``` -##### 4. Select the right SDK version: +##### 3. Select the right SDK version: * For work with RF60X scanners: ```bash git submodule update --init --recursive diff --git a/wrappers/LabVIEW/rf60Xsdk/LabVIEW b/wrappers/LabVIEW/rf60Xsdk/LabVIEW new file mode 100644 index 0000000000000000000000000000000000000000..79ffb6a948ed533543b4538a1916a88870b78b95 --- /dev/null +++ b/wrappers/LabVIEW/rf60Xsdk/LabVIEW @@ -0,0 +1,17 @@ +To use the library in the LabVIEW and Matlab development environment, the library build will be as follows: you need to build statically 2 libraries rf60Xcore.lib and rf60Xsdk.lib. Next, these libraries will need to be merge into one whole.. This can be done using the built-in microsoft library manager utility (Lib.exe). + +Example of a static library merge command : + +lib.exe /OUT:rf60XsdkJoin.lib rf60Xsdk.lib rf60Xcore.lib + + +rf60XsdkJoin.lib is the output name of the merged library, + +rf60Xsdk.lib is a static C++ library, and + +rf60Xcore.lib is a static C kernel library. + +Add the resulting library (rf60XsdkJoin.lib) to the C++/CLI project and build it. + + +If you have any problems with building the project and you need help, then write to nikita.kozhuro@gmail.com \ No newline at end of file