{"id":20144948,"url":"https://github.com/eskry/tmxl","last_synced_at":"2025-07-27T14:37:47.110Z","repository":{"id":63619892,"uuid":"75769268","full_name":"eSkry/TMXL","owner":"eSkry","description":"Tiled Map Editor - Map loader","archived":false,"fork":false,"pushed_at":"2022-12-14T13:13:03.000Z","size":2118,"stargazers_count":6,"open_issues_count":1,"forks_count":1,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-04-09T19:17:45.748Z","etag":null,"topics":["tiled","tiled-map-editor","tilemap","tmx","tmx-loader-tme","tmxl"],"latest_commit_sha":null,"homepage":"","language":"C++","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/eSkry.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE.md","code_of_conduct":"CODE_OF_CONDUCT.md","threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2016-12-06T20:37:21.000Z","updated_at":"2023-10-05T21:40:50.000Z","dependencies_parsed_at":"2023-01-28T23:15:48.686Z","dependency_job_id":null,"html_url":"https://github.com/eSkry/TMXL","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/eSkry%2FTMXL","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/eSkry%2FTMXL/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/eSkry%2FTMXL/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/eSkry%2FTMXL/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/eSkry","download_url":"https://codeload.github.com/eSkry/TMXL/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248094988,"owners_count":21046770,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","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":["tiled","tiled-map-editor","tilemap","tmx","tmx-loader-tme","tmxl"],"created_at":"2024-11-13T22:12:52.947Z","updated_at":"2025-04-09T19:17:50.507Z","avatar_url":"https://github.com/eSkry.png","language":"C++","readme":"\u003ch1 align=\"center\"\u003eTMXL\u003c/h1\u003e\r\n\r\n\u003cdiv align=\"center\"\u003e\r\n \u003ca href=\"https://travis-ci.com/eSkry/TMXL\"\u003e\u003cimg src=\"https://travis-ci.com/eSkry/TMXL.svg?branch=TMXL_V1\" /\u003e\u003c/a\u003e\r\n \u003ca href=\"https://ci.appveyor.com/project/eSkry/tmxl\"\u003e\u003cimg src=\"https://ci.appveyor.com/api/projects/status/vgkpvw4dda3ykqia?svg=true\" /\u003e\u003c/a\u003e\r\n \u003ca href=\"https://coveralls.io/github/eSkry/TMXL?branch=TMXL_V1\"\u003e\u003cimg src=\"https://coveralls.io/repos/github/eSkry/TMXL/badge.svg?branch=TMXL_V1\" /\u003e\u003c/a\u003e\r\n \u003ca href=\"https://www.codefactor.io/repository/github/eskry/tmxl\"\u003e\u003cimg src=\"https://www.codefactor.io/repository/github/eskry/tmxl/badge\" /\u003e\u003c/a\u003e\r\n \u003ca href=\"https://github.com/eSkry/TMXL/blob/TMXL_V1/LICENSE.md\"\u003e\u003cimg src=\"https://img.shields.io/badge/License-MIT-blue.svg\" /\u003e\u003c/a\u003e\r\n\u003c/div\u003e\r\n\r\n## Build\r\nProject uses [CMake](https://cmake.org) to generate platform and compiler-specific build files.\r\n\r\n### Dependencies\r\n- `optional` [pugixml](https://pugixml.org)\r\n\r\n### CMake options\r\n| Options              | Description                        | Default |\r\n|----------------------|------------------------------------|---------|\r\n| BUILD_EXAMPLES       | Build example projects             | ON      |\r\n| BUILD_TESTS          | Build all test existing in project | OFF     |\r\n| BUILD_TMXL_TEST_ONLY | Build test only for TMXL lib       | OFF     |\r\n| BUILD_USE_PUGIXML    | Build lib with pugixml support     | ON      |\r\n| BUILD_SHARED_LIBS    | Build shared libs                  | OFF     |\r\n\r\n### Building on Linux (Unix Makefiles)\r\n1. Clone repository, enter to TMXL directory: `git clone https://github.com/eSkry/TMXL \u0026\u0026 cd ./TMXL`\r\n1. Run init submodules script: `chmod +x ./initsubmodules.sh \u0026\u0026 ./initsubmodules.sh`\r\n1. Build TMXL:\r\n    - Run script: `chmod +x ./build.sh \u0026\u0026 ./build.sh` or create build dir: `mkdir build \u0026\u0026 cd build` and generate Makefile and build: `cmake -G \"Unix Makefiles\" .. -DCMAKE_BUILD_TYPE=Release \u0026\u0026 cmake --build .`\r\n1. For install lib and include files run: `make install`\r\n\r\n### Building on Window (Visual Studio)\r\n1. CMake build list:\r\n    - Visual Studio 2019: `cmake .. -G \"Visual Studio 16 2019\"`\r\n    - Visual Studio 2017: `cmake .. -G \"Visual Studio 15 2017 Win64\"`\r\n    - Visual Studio 2015: `cmake .. -G \"Visual Studio 14 2015 Win64\"`\r\n1. Open TMXL.sln project\r\n1. Run build\r\n\r\n## Contributing\r\nPlease read [CONTRIBUTING.md](CONTRIBUTING.md) for details on our code of conduct, and the process for submitting pull requests to us.\r\n\r\n## License\r\nThis project is licensed under the MIT License - see the [LICENSE.md](LICENSE.md) file for details\r\n\r\n## Badges\r\n![Badge_status](https://www.code-inspector.com/project/226/status/svg) ![Badge_score](https://www.code-inspector.com/project/226/score/svg) \r\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Feskry%2Ftmxl","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Feskry%2Ftmxl","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Feskry%2Ftmxl/lists"}