diff options
Diffstat (limited to 'thirdparty')
| -rw-r--r-- | thirdparty/xmake.lua | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/thirdparty/xmake.lua b/thirdparty/xmake.lua index 7377cf0f6..196f184ae 100644 --- a/thirdparty/xmake.lua +++ b/thirdparty/xmake.lua @@ -69,10 +69,10 @@ target('asio') set_kind('headeronly') set_group('thirdparty') add_defines("ASIO_STANDALONE", "ASIO_HEADER_ONLY", {public=true}) - if is_plat("linux") and not (get_config("toolchain") == "ue-clang") then - add_defines("ASIO_HAS_IO_URING", {public=true}) - add_packages("liburing", {public=true}) - end + -- if is_plat("linux") and not (get_config("toolchain") == "ue-clang") then + -- add_defines("ASIO_HAS_IO_URING", {public=true}) + -- add_packages("liburing", {public=true}) + -- end add_headerfiles("asio/asio/include/**.hpp") add_includedirs("asio/asio/include", {public=true}) |