xmake-repo alternatives and similar libraries
Based on the "Game Engine" category.
Alternatively, view xmake-repo alternatives based on common mentions on social networks and blogs.
-
Cocos2d-x
A multi-platform framework for building 2d games, interactive books, demos and other graphical applications. [Commercial?] -
GamePlay
A cross-platform native C++ game framework for creating 2D/3D mobile and desktop games. [Apache2] -
Panda3D
A game engine, a framework for 3D rendering and game development for Python and C++ programs. [Modified BSD] website -
The MOAI Multi-platform Game Engine
This is the development repo of Moai SDK. Current, but not necessarily tested or stable.
Get performance insights in less than 4 minutes
* Code Quality Rankings and insights are calculated and provided by Lumnify.
They vary from L1 to L5 with "L5" being the highest. Visit our partner's website for more details.
Do you think we are missing an alternative of xmake-repo or a related project?
Popular Comparisons
README
xmake-repo
An official xmake package repository
Supporting the project
Support this project by becoming a sponsor. Your logo will show up here with a link to your website. π [Become a sponsor]
Introduction (δΈζ)
xmake-repo is an official xmake package repository.
Package dependences
Package management
If you want to know more, please refer to:
Xrepo
xrepo is a cross-platform C/C++ package manager based on Xmake.
It is based on the runtime provided by xmake, but it is a complete and independent package management program. Compared with package managers such as vcpkg/homebrew, xrepo can provide C/C++ packages for more platforms and architectures at the same time.
If you want to know more, please refer to: Documents, Github and Gitee
Submit package to repository
Write a xmake.lua of new package in packages/x/xxx/xmake.lua
and push a pull-request to the dev branch.
For example, packages/z/zlib/xmake.lua:
If you want to known more, please see: Create and Submit packages to the official repository
package("zlib")
set_homepage("http://www.zlib.net")
set_description("A Massively Spiffy Yet Delicately Unobtrusive Compression Library")
set_urls("http://zlib.net/zlib-$(version).tar.gz",
"https://downloads.sourceforge.net/project/libpng/zlib/$(version)/zlib-$(version).tar.gz")
add_versions("1.2.10", "8d7e9f698ce48787b6e1c67e6bff79e487303e66077e25cb9784ac8835978017")
add_versions("1.2.11", "c3e5e9fdd5004dcb542feda5ee4f0ff0744628baf8ed2dd5d66f8ca1197cb1a1")
on_install("windows", function (package)
io.gsub("win32/Makefile.msc", "%-MD", "-" .. package:config("vs_runtime"))
os.vrun("nmake -f win32\\Makefile.msc zlib.lib")
os.cp("zlib.lib", package:installdir("lib"))
os.cp("*.h", package:installdir("include"))
end)
on_install("linux", "macosx", function (package)
import("package.tools.autoconf").install(package, {"--static"})
end)
on_install("iphoneos", "[email protected],macosx", "[email protected],macosx", function (package)
import("package.tools.autoconf").configure(package, {host = "", "--static"})
io.gsub("Makefile", "\nAR=.-\n", "\nAR=" .. (package:build_getenv("ar") or "") .. "\n")
io.gsub("Makefile", "\nARFLAGS=.-\n", "\nARFLAGS=cr\n")
io.gsub("Makefile", "\nRANLIB=.-\n", "\nRANLIB=\n")
os.vrun("make install -j4")
end)
on_test(function (package)
assert(package:has_cfuncs("inflate", {includes = "zlib.h"}))
end)
Supported Packages
linux | windows | mingw | iphoneos | macosx | android |
---|---|---|---|---|---|
boost | boost | catch2 | catch2 | autoconf | catch2 |
bullet3 | bzip2 | concurrentqueue | cjson | automake | cjson |
bzip2 | cairo | cpp-taskflow | concurrentqueue | boost | concurrentqueue |
cairo | catch2 | doctest | cpp-taskflow | bullet3 | cpp-taskflow |
catch2 | concurrentqueue | fmt | doctest | bzip2 | doctest |
cjson | cpp-taskflow | gtest | fmt | cairo | ffmpeg |
concurrentqueue | doctest | imgui | gtest | catch2 | fmt |
cpp-taskflow | expat | inja | imgui | cjson | gtest |
doctest | fmt | libjpeg | inja | cmake | imgui |
expat | freeglut | libsdl | json-c | concurrentqueue | inja |
ffmpeg | freetype | nlohmann_json | libcurl | cpp-taskflow | json-c |
fmt | glew | pcre | libev | doctest | libjpeg |
fontconfig | go | pcre2 | libffi | expat | libpng |
freeglut | gtest | spdlog | libjpeg | ffmpeg | libuv |
freetype | imgui | tbox | libpng | fmt | libxml2 |
gettext | inja | xz | libuv | fontconfig | lua |
glew | libcurl | zlib | libxml2 | freetype | nlohmann_json |
glib | libjpeg | nlohmann_json | gettext | spdlog | |
go | libpng | spdlog | glew | tbox | |
gperf | libsdl | tbox | glib | zlib | |
gtest | libtiff | zlib | go | ||
icu4c | libuv | gperf | |||
imgui | libwebsockets | gtest | |||
inja | lua | icu4c | |||
json-c | luajit | imgui | |||
libcurl | nana | inja | |||
libev | nlohmann_json | json-c | |||
libffi | oatpp | libcurl | |||
libiconv | pcre | libev | |||
libjpeg | pixman | libffi | |||
libmill | protobuf-c | libiconv | |||
libpng | protobuf-cpp | libjpeg | |||
libsdl | raylib | libmill | |||
libtask | skia | libpng | |||
libtiff | spdlog | libsdl | |||
libusb | sqlite3 | libtask | |||
libuv | tbox | libtiff | |||
libwebsockets | unqlite | libtool | |||
libxml2 | zeromq | libusb |
Note: Only some packages are shown here. If you want to see a complete list of all packages, please see: Packages List
We also welcome everyone to contribute some packages to our package repository.π
*Note that all licence references and agreements mentioned in the xmake-repo README section above
are relevant to that project's source code only.