package("asmtk") set_homepage("https://github.com/asmjit/asmtk") set_description("Assembler toolkit based on AsmJit") set_license("zlib") set_urls("https://github.com/asmjit/asmtk.git") add_versions("2023.6.14", "6e25b8983fbd8bf455c01ed7c5dd40c99b789565") add_deps("asmjit") on_install("windows", "linux", "macosx", function (package) if not package:config("shared") then package:add("defines", "ASMTK_STATIC") end io.writefile("xmake.lua", [[ add_rules("mode.debug", "mode.release") add_requires("asmjit") target("asmtk") set_kind("$(kind)") add_files("src/**.cpp") add_headerfiles("src/(**.h)") set_languages("c++11") if is_kind("static") then add_defines("ASMTK_STATIC") elseif is_kind("shared") then add_defines("ASMTK_EXPORTS") end if is_plat("windows") then add_cxxflags("/GR-", "/GF", "/Zc:inline", "/Zc:strictStrings", "/Zc:threadSafeInit-") if is_mode("debug") then add_cxxflags("/GS") else add_cxxflags("/GS-", "/Oi") end else add_cxxflags("-fno-math-errno", "-fno-threadsafe-statics") end add_packages("asmjit") ]]) import("package.tools.xmake").install(package, configs) end) on_test(function (package) assert(package:check_cxxsnippets({test = [[ #include #include using namespace asmjit; using namespace asmtk; void test() { Environment env(Arch::kX64); CodeHolder code; code.init(env); x86::Assembler a(&code); AsmParser p(&a); } ]]}, {configs = {languages = "c++11"}})) end)