Skip to content

Latest commit

 

History

History
20 lines (19 loc) · 1.24 KB

File metadata and controls

20 lines (19 loc) · 1.24 KB

Create the following modules as required by taking the src/cpp11/app11 module as a template. All required third-party libraries are located under 3rd/include.

  • src/cpp11
    • demo11: A basic demo for C++11 version verification, which can quickly verify whether the platform supports running C++11 code.
    • spdlog_demo: A demo using the spdlog library
    • CLI11_demo: An empty main function is sufficient.
    • json_demo: A demo using the json library
    • toml11_demo: A demo using the toml11 library
    • tabulate_demo: A demo using the tabulate library
    • cqueue_demo: A demo using the concurrentqueue library
    • rqueue_demo: A demo using the readerwriterqueue library
  • src/cpp14
    • demo14: A basic demo for C++14 version verification, which can quickly verify whether the platform supports running C++14 code.
    • cli_demo: An empty main function is sufficient.
    • config_demo: An empty main function is sufficient.
    • sigslot_demo: A demo using the sigslot library
  • src/cpp17
    • demo17: A basic demo for C++17 version verification, which can quickly verify whether the platform supports running C++17 code.
  • src/cpp20
    • demo20: A basic demo for C++20 version verification, which can quickly verify whether the platform supports running C++20 code.