瀏覽代碼

remove spaces

ruki 1 年之前
父節點
當前提交
285d5b9bcc
共有 1 個文件被更改,包括 0 次插入3 次删除
  1. 0 3
      packages/a/asio3/xmake.lua

+ 0 - 3
packages/a/asio3/xmake.lua

@@ -1,5 +1,4 @@
 package("asio3")
 package("asio3")
-
     set_kind("library", {headeronly = true})
     set_kind("library", {headeronly = true})
     set_homepage("https://github.com/zhllxt/asio3")
     set_homepage("https://github.com/zhllxt/asio3")
     set_description("Header only c++ network library, based on c++ 20 coroutine and asio")
     set_description("Header only c++ network library, based on c++ 20 coroutine and asio")
@@ -11,7 +10,6 @@ package("asio3")
     add_deps("asio", "cereal", "fmt", "openssl3", "nlohmann_json")
     add_deps("asio", "cereal", "fmt", "openssl3", "nlohmann_json")
     add_deps("spdlog", { configs = { header_only = false, fmt_external = true } })
     add_deps("spdlog", { configs = { header_only = false, fmt_external = true } })
 
 
-
     on_install("windows", "linux", "macosx", "mingw", "bsd", function (package)
     on_install("windows", "linux", "macosx", "mingw", "bsd", function (package)
         os.cp(path.join("include"), package:installdir())
         os.cp(path.join("include"), package:installdir())
     end)
     end)
@@ -22,7 +20,6 @@ package("asio3")
             namespace net = ::asio;
             namespace net = ::asio;
             void test() {
             void test() {
                 net::io_context ctx;
                 net::io_context ctx;
-
 	            net::tcp_client client(ctx.get_executor());
 	            net::tcp_client client(ctx.get_executor());
             }
             }
         ]]}, {configs = {languages = "c++23"}}))
         ]]}, {configs = {languages = "c++23"}}))