https://github.com/ierturk/fastdds-rpc
Fast DDS QML Example with Conan 2 (using conanfile.py)
https://github.com/ierturk/fastdds-rpc
boost boost-asio boost-signals2 clink cmake cmder conan dds fastdds ninja qt6 qt6-qml rpc vscode
Last synced: 23 days ago
JSON representation
Fast DDS QML Example with Conan 2 (using conanfile.py)
- Host: GitHub
- URL: https://github.com/ierturk/fastdds-rpc
- Owner: ierturk
- License: bsd-3-clause
- Created: 2025-03-30T22:11:44.000Z (29 days ago)
- Default Branch: master
- Last Pushed: 2025-04-04T14:34:33.000Z (24 days ago)
- Last Synced: 2025-04-04T15:33:23.686Z (24 days ago)
- Topics: boost, boost-asio, boost-signals2, clink, cmake, cmder, conan, dds, fastdds, ninja, qt6, qt6-qml, rpc, vscode
- Language: C++
- Homepage: https://erturk.me/
- Size: 86.9 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Fast DDS QML Example with Conan 2 (using conanfile.py)
This project demonstrates how to use Fast DDS with a QML GUI, managed by Conan 2 using a conanfile.py recipe. The example also implements a RPC (remote procedure call) over DDS.
## Prerequisites
- FastDDSGen V2 tool from eProsima (included in FastDDS installation for Windows) requires Java Runtime Environment (JRE) installation
- CMake 3.15+
- MSVC C++ compiler supporting C++20
- Conan 2.0+
- Python 3.6+ (for Conan)
- Ninja build
- Clink integration with Cmder for enhancing the Windows `cmd` shell experience
- GNU Make
- VS Code
- A third-party prebuilt 32-bit library, `ExampleLib`, used for enabling communication between the 32-bit proxy side and the 64-bit invoker side.## Libraries from Conan center
- FastDDS
- FastDDS CDR
- Boost asio
- Boost signals2
- Qt 6.5.3 LTS## Building on Windows
Start a `Cmder` console
```bash# For building invoker (64-bit) app
λ "C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Auxiliary\Build\vcvarsall.bat" x64
# Note: Adjust the path to match your Visual Studio installation if it differs.
λ make all
λ code .# ctrl+shift+p
# CMake: Select Configure Preset
# select conan-windows-msvc-194-x86_64-debug config# For building proxy (32-bit) app
λ "C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Auxiliary\Build\vcvarsall.bat" x86
# Note: Modify the path above if your Visual Studio installation is in a different location.
λ make all
λ code .# ctrl+shift+p
# CMake: Select Configure Preset
# select conan-windows-msvc-194-x86-debug config
```
## License
This project is licensed under the BSD 3-Clause License, which permits use, distribution, and modification with proper attribution, while disclaiming liability and warranty. See the [LICENSE](./LICENSE) file for full details.