-
Notifications
You must be signed in to change notification settings - Fork 362
update installation and README #819
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Changes from 1 commit
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| @@ -0,0 +1,108 @@ | ||||||||||||||
| # RTKLIB-EX (previously RTKLIB demo5) | ||||||||||||||
|
|
||||||||||||||
| A version of RTKLIB optimized for low cost GNSS receivers (single, dual, or triple frequency), especially u-blox receivers and based on RTKLIB 2.4.3. This software is provided “AS IS” without any warranties of any kind so please be careful, especially if using it in any kind of real-time application. | ||||||||||||||
|
|
||||||||||||||
| Releases and pre-releases for Windows executables are available at https://github.com/rtklibexplorer/RTKLIB/releases | ||||||||||||||
|
|
||||||||||||||
| Tutorials for this code, and sample GPS data sets are available at http://rtkexplorer.com/ | ||||||||||||||
|
|
||||||||||||||
| The latest version of the user manual is at: https://rtkexplorer.com/pdfs/manual_demo5.pdf | ||||||||||||||
|
|
||||||||||||||
| ============================== | ||||||||||||||
| INSTALLATION & COMPILATION | ||||||||||||||
| ============================== | ||||||||||||||
|
|
||||||||||||||
| --- | ||||||||||||||
| ▶️ **Recommended: CMake (Windows, Linux, macOS)** | ||||||||||||||
| --- | ||||||||||||||
|
|
||||||||||||||
| **Requirements** | ||||||||||||||
| - CMake ≥ 3.10 | ||||||||||||||
| - C/C++ compiler (GCC, Clang, MSVC, ...) | ||||||||||||||
| - Qt5 or Qt6 (for GUI applications) | ||||||||||||||
| - Required modules: Core, Gui, Widgets, SerialPort, Xml, Concurrent | ||||||||||||||
| - Optional: WebEngineWidgets/WebKitWidgets (for maps), LinguistTools (for translations) | ||||||||||||||
|
|
||||||||||||||
| **Steps** | ||||||||||||||
| 1. Create a build directory: | ||||||||||||||
| ```sh | ||||||||||||||
| mkdir build | ||||||||||||||
| cd build | ||||||||||||||
| ``` | ||||||||||||||
| 2. Configure the project: | ||||||||||||||
| ```sh | ||||||||||||||
| cmake .. | ||||||||||||||
| ``` | ||||||||||||||
| - For Release build: | ||||||||||||||
| ```sh | ||||||||||||||
| cmake -DCMAKE_BUILD_TYPE=Release .. | ||||||||||||||
| ``` | ||||||||||||||
| - To specify a custom Qt path: | ||||||||||||||
| ```sh | ||||||||||||||
| cmake -DQt5_DIR=/path/to/Qt5 .. | ||||||||||||||
| ``` | ||||||||||||||
| 3. Build: | ||||||||||||||
| ```sh | ||||||||||||||
| make | ||||||||||||||
| ``` | ||||||||||||||
| 4. (Optional) Run tests: | ||||||||||||||
| ```sh | ||||||||||||||
| make test | ||||||||||||||
|
Comment on lines
+46
to
+50
|
||||||||||||||
| make | |
| ``` | |
| 4. (Optional) Run tests: | |
| ```sh | |
| make test | |
| cmake --build . |
- (Optional) Run tests:
ctest
Uh oh!
There was an error while loading. Please reload this page.