https://github.com/lszl84/wx_xml_tutorial
Using wxXmlDocument to serialize data in C++
https://github.com/lszl84/wx_xml_tutorial
cpp serialization wxwidgets xml
Last synced: about 1 hour ago
JSON representation
Using wxXmlDocument to serialize data in C++
- Host: GitHub
- URL: https://github.com/lszl84/wx_xml_tutorial
- Owner: lszl84
- License: mit
- Created: 2023-04-19T14:44:05.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2025-05-18T14:42:44.000Z (about 1 year ago)
- Last Synced: 2025-05-18T15:35:49.755Z (about 1 year ago)
- Topics: cpp, serialization, wxwidgets, xml
- Language: C++
- Homepage: https://www.lukesdevtutorials.com
- Size: 1.98 MB
- Stars: 2
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# wx_xml_tutorial
Using `wxXmlDocument` in wxWidgets.
[](https://www.youtube.com/watch?v=fTabZu3BQ0s)
Full Tutorial: [https://www.youtube.com/watch?v=fTabZu3BQ0s](https://www.youtube.com/watch?v=fTabZu3BQ0s)
### Building
To build the project, use:
```bash
cmake -S. -Bbuild
cmake --build build
```
This will create a directory named `build` and create all build artifacts there. The main executable can be found in the `build/subprojects/Build/wx_xml_tutorial_core` folder.
### Reqiurements
If you don't have wxWidgets installed, the CMake script will download and build the dependencies automatically.
But if CMake script finds wxWidgets on your system, make sure it's at least version 3.1.0.
---
Check out the blog for more! [devmindscape.com](https://devmindscape.com)
---