xaizek / etabench (License: GPLv3) (since 2022-09-08)
Benchmark for algorithms that compute I/O ETA
<root> / xmake.lua (3df726906843b9529bb7b36ab128300ce0d66b30) (501B) (mode 100644) [raw]
set_project("etabench")

includes("libs/*/xmake.lua")

add_requires("fmt")

if is_mode("debug") then
    set_warnings("all", "error")
end

add_rules("mode.debug", "mode.release")
add_rules("mode.valgrind")
add_rules("mode.asan", "mode.ubsan")

target("etabench")
    set_kind("binary")
    set_languages("c++20")
    add_files("src/**.cpp")
    add_packages("fmt")
    add_deps("tclap", "gnuplotscripting")
    after_build(function (target)
        os.cp(target:targetfile(), "$(scriptdir)")
    end)
Hints

Before first commit, do not forget to setup your git environment:
git config --global user.name "your_name_here"
git config --global user.email "your@email_here"

Clone this repository using HTTP(S):
git clone https://code.reversed.top/user/xaizek/etabench

Clone this repository using ssh (do not forget to upload a key first):
git clone ssh://rocketgit@code.reversed.top/user/xaizek/etabench

You are allowed to anonymously push to this repository.
This means that your pushed commits will automatically be transformed into a pull request:
... clone the repository ...
... make some changes and some commits ...
git push origin master