diff options
-rw-r--r-- | xmake.lua | 7 |
1 files changed, 4 insertions, 3 deletions
@@ -2,7 +2,7 @@ add_rules("mode.debug", "mode.release", "mode.releasedbg", "mode.minsizerel") add_requires("nuklear", "nuklear_glfw_gl3", "nuklear_fonts", "glew", "glfw", "tinyfiledialogs", "c11threads", "pcre2", - "cjson", "tomlc99") + "cjson", "ffmpeg", "tomlc99") add_requires("libcurl", { configs = { zlib = true } }) if is_plat("linux") then @@ -10,8 +10,9 @@ if is_plat("linux") then end if is_plat("windows") then - set_arch("x86") - set_toolchains("llvm") + set_runtimes("MD") + set_toolchains("msvc") + set_toolset("cc", "clang-cl") end target("hinata") |