Skip to content

Latest commit

 

History

History
35 lines (26 loc) · 1.16 KB

File metadata and controls

35 lines (26 loc) · 1.16 KB

mcpplibs-index

mcpplibs index

How to use?

-- 0 - Add mcpplibs's index repos
add_repositories("mcpplibs-index https://github.com/mcpplibs/mcpplibs-index.git")

-- 1 - Add the libraries and versions you need
add_requires("templates 0.0.1")

target("templates_test")
    set_kind("binary")
    set_languages("c++23")
    add_files("main.cpp")
    -- 2 - Use it
    add_packages("templates")
    set_policy("build.c++.modules", true)

List

name introduce demo other
templates A template of modern C++ modules libraries templates_test
cmdline A simple command-line parsing library/framework for modern C++ cmdline_test
llmapi Modern C++ LLM API client with openai-compatible support llmapi_test
mcpplibs-capi-lua C++23 module bindings for Lua 5.4 C API lua_test

Other