DNASequence/xmake.lua

15 lines
365 B
Lua
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

add_rules("mode.debug","mode.release")
add_includedirs("src/tools")
set_languages("c++23")
set_rundir("./")
if is_plat("windows")then
-- 注意这里是启用AVX512指令集矢量化加速只有新2010年后的CPU支持但是可以大大加快批量指令加速
-- add_cxxflags("/arch:AVX512")
end
target("dna")
add_files("src/main.cpp")