Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/openvicproject/openvic-dataloader
Dataloader submodule for OpenVic that is responsible for parsing both Paradox Victoria 2 data files and custom OpenVic data files.
https://github.com/openvicproject/openvic-dataloader
csv game game-development gamedev openvic parser victoria-2 victoria2
Last synced: about 2 months ago
JSON representation
Dataloader submodule for OpenVic that is responsible for parsing both Paradox Victoria 2 data files and custom OpenVic data files.
- Host: GitHub
- URL: https://github.com/openvicproject/openvic-dataloader
- Owner: OpenVicProject
- License: mit
- Created: 2023-01-23T01:07:47.000Z (almost 2 years ago)
- Default Branch: master
- Last Pushed: 2024-05-15T20:25:57.000Z (8 months ago)
- Last Synced: 2024-05-16T20:10:57.502Z (8 months ago)
- Topics: csv, game, game-development, gamedev, openvic, parser, victoria-2, victoria2
- Language: C++
- Homepage:
- Size: 232 KB
- Stars: 6
- Watchers: 3
- Forks: 2
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# OpenVic-Dataloader
Repo of the OpenVic-Dataloader Library for [OpenVic](https://github.com/OpenVicProject/OpenVic)## Quickstart Guide
For detailed instructions, view the OpenVic Contributor Quickstart Guide [here](https://github.com/OpenVicProject/OpenVic/blob/master/docs/contribution-quickstart-guide.md)## Required
* [scons](https://scons.org/)## Build Instructions
1. Install [scons](https://scons.org/) for your system.
2. Run the command `git submodule update --init --recursive` to retrieve all related submodules.
3. Run `scons build_ovdl_library=yes` in the project root, you should see a libopenvic-dataloader file in `bin`.## Link Instructions
1. Call `ovdl_env = SConscript("openvic-dataloader/SConstruct")`
2. Use the values stored in the `ovdl_env.openvic_dataloader` to link and compile against:| Variable Name | Description | Correlated ENV variable |
| --- | --- | --- |
| `LIBPATH` | Library path list | `env["LIBPATH"]` |
| `LIBS` | Library files names in the library paths | `env["LIBS"]` |
| `INCPATH` | Library include files | `env["CPPPATH"]` |