package An official xmake package repository https://xrepo.xmake.io/
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

45 lines
1.8 KiB

package("tmxparser")
set_homepage("https://github.com/sainteos/tmxparser")
set_description("C++11 library for parsing the maps generated by Tiled Map Editor")
set_urls("https://github.com/sainteos/tmxparser.git")
add_versions("2.2.0", "d314b3115c7ed86a939eefcb6009a495f043a346")
add_deps("zlib", "tinyxml2")
on_install("windows", "macosx", "linux", "mingw", function (package)
io.gsub("include/Tmx.h.in", "@VERSION_PATCH@", "@VERSION_ALTER@")
io.writefile("xmake.lua", ([[
set_version("%s")
add_requires("zlib", "tinyxml2")
add_rules("mode.debug", "mode.release")
target("tmxparser")
set_kind("$(kind)")
set_languages("cxx11")
add_packages("zlib", "tinyxml2")
add_headerfiles("include/*.h")
add_includedirs("include", "include/base64")
set_configdir("include")
add_configfiles("include/Tmx.h.in", {pattern = "@(.-)@"})
add_files("src/**.cpp")
if is_plat("windows") and is_kind("shared") then
add_rules("utils.symbols.export_all", {export_classes = true})
end
]]):format(package:version_str()))
local configs = {}
configs.kind = (package:config("shared") and "shared" or "static")
if package:is_plat("linux", "mingw") and package:config("pic") ~= false then
configs.cxflags = "-fPIC"
end
import("package.tools.xmake").install(package, configs)
end)
on_test(function (package)
assert(package:check_cxxsnippets({test = [[
void test(int argc, char** argv) {
Tmx::Map map;
map.ParseFile("test.xml");
}
]]}, {configs = {languages = "c++11"}, includes = "Tmx.h"}))
end)