代码拉取完成,页面将自动刷新
同步操作将从 Gitee 极速下载/CO 强制同步,此操作会覆盖自 Fork 仓库以来所做的任何修改,且无法恢复!!!
确定后同步将在后台操作,完成时将刷新页面,请耐心等待。
-- plat
set_config("plat", os.host())
-- project
set_project("co")
-- set xmake minimum version
set_xmakever("2.2.5")
-- set common flags
set_languages("c++11")
set_optimize("faster") -- faster: -O2 fastest: -O3 none: -O0
set_warnings("all") -- -Wall
set_symbols("debug") -- dbg symbols
if is_plat("macosx", "linux") then
add_cxflags("-g3", "-Wno-narrowing", "-Wno-sign-compare", "-Wno-class-memaccess")
if is_plat("macosx") then
add_cxflags("-fno-pie")
end
add_syslinks("pthread", "dl")
end
if is_plat("windows") then
add_cxflags("-MD", "-EHsc")
end
---[[
--add_requires("zlib", {optional = true})
add_requires("openssl >=1.1.0", {optional = true})
add_requires("libcurl", {optional = true, configs = {openssl = true, zlib = true}})
if has_package("libcurl") then
add_defines("HAS_LIBCURL")
add_packages("libcurl")
end
--if has_package("zlib") then
-- add_defines("HAS_ZLIB")
-- add_packages("zlib")
--end
if has_package("openssl") then
add_defines("CO_SSL")
add_defines("HAS_OPENSSL")
add_packages("openssl")
end
--]]
-- include dir
add_includedirs("include")
-- install header files
add_installfiles("(include/**)", {prefixdir = ""})
add_installfiles("*.md", {prefixdir = "include/co"})
-- include sub-projects
includes("src", "gen", "test", "unitest")
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。