{"id":27054737,"url":"https://github.com/ierturk/fastdds-rpc","last_synced_at":"2026-05-09T04:32:36.539Z","repository":{"id":286138313,"uuid":"957659242","full_name":"ierturk/fastdds-rpc","owner":"ierturk","description":"Fast DDS QML Example with Conan 2 (using conanfile.py)","archived":false,"fork":false,"pushed_at":"2025-04-04T14:34:33.000Z","size":89,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-04-04T15:33:23.686Z","etag":null,"topics":["boost","boost-asio","boost-signals2","clink","cmake","cmder","conan","dds","fastdds","ninja","qt6","qt6-qml","rpc","vscode"],"latest_commit_sha":null,"homepage":"https://erturk.me/","language":"C++","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"bsd-3-clause","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/ierturk.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2025-03-30T22:11:44.000Z","updated_at":"2025-04-04T14:34:38.000Z","dependencies_parsed_at":"2025-04-04T15:43:32.468Z","dependency_job_id":null,"html_url":"https://github.com/ierturk/fastdds-rpc","commit_stats":null,"previous_names":["ierturk/fastdds-rpc"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/ierturk/fastdds-rpc","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ierturk%2Ffastdds-rpc","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ierturk%2Ffastdds-rpc/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ierturk%2Ffastdds-rpc/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ierturk%2Ffastdds-rpc/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ierturk","download_url":"https://codeload.github.com/ierturk/fastdds-rpc/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ierturk%2Ffastdds-rpc/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32807207,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-08T08:22:46.396Z","status":"online","status_checked_at":"2026-05-09T02:00:06.633Z","response_time":123,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["boost","boost-asio","boost-signals2","clink","cmake","cmder","conan","dds","fastdds","ninja","qt6","qt6-qml","rpc","vscode"],"created_at":"2025-04-05T09:16:42.653Z","updated_at":"2026-05-09T04:32:36.533Z","avatar_url":"https://github.com/ierturk.png","language":"C++","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Fast DDS QML Example with Conan 2 (using conanfile.py)\n\n[Associated post](https://erturk.me/projects/fastdds-conan-rpc/)\n\n![The app](docs/images/fastdds-conan-rpc.png)\n\nThis 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.\n\n## Prerequisites\n- FastDDSGen V2 tool from eProsima (included in FastDDS installation for Windows) requires Java Runtime Environment (JRE) installation\n- CMake 3.15+\n- MSVC C++ compiler supporting C++20\n- Conan 2.0+\n- Python 3.6+ (for Conan)\n- Ninja build\n- Clink integration with Cmder for enhancing the Windows `cmd` shell experience\n- GNU Make\n- VS Code\n- A third-party prebuilt 32-bit library, `RBIC1Lib`, used for enabling communication between the 32-bit proxy side and the 64-bit invoker side.\n- gTest and gMock for test suite for testing and mocking\n## Libraries from Conan center\n- FastDDS\n- FastDDS CDR\n- Boost asio\n- Boost signals2\n- Qt 6.5.3 LTS\n\n## Building on Windows\nStart a `Cmder` console\n```bash\n\n# For building invoker (64-bit) app\n# clone the repo\nλ git clone https://github.com/ierturk/fastdds-rpc.git\nλ cd fastdds-rpc\n#\nλ \"C:\\Program Files (x86)\\Microsoft Visual Studio\\2022\\BuildTools\\VC\\Auxiliary\\Build\\vcvarsall.bat\" x64\n# Note: Adjust the path to match your Visual Studio installation if it differs.\nλ make all\nλ code .\n\n# ctrl+shift+p\n# CMake: Select Configure Preset\n# select conan-windows-msvc-194-x86_64-debug config\n\n# For building proxy (32-bit) app\nλ \"C:\\Program Files (x86)\\Microsoft Visual Studio\\2022\\BuildTools\\VC\\Auxiliary\\Build\\vcvarsall.bat\" x86\n# Note: Modify the path above if your Visual Studio installation is in a different location.\nλ make all\nλ code .\n\n# ctrl+shift+p\n# CMake: Select Configure Preset\n# select conan-windows-msvc-194-x86-debug config\n```\nAll tests will be built for x64; no tests will be built for the x86 build. VS Code tests can be used, or in the console, run under the build directory: `build\\windows-msvc-194-x86_64-debug`.\n```\nλ ctest --verbose\n```\n## License\nThis 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.","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fierturk%2Ffastdds-rpc","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fierturk%2Ffastdds-rpc","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fierturk%2Ffastdds-rpc/lists"}