matrix-coro

A WIP highlevel matrix c++ SDK with a MAS first approach
git clone git://archive.git.mtrnord.blog/MTRNord/matrix-coro.git
Log | Files | Refs | README | LICENSE

CMakeLists.txt (175B)


      1 add_executable(
      2         matrix_coro_example
      3         main.cpp
      4 )
      5 
      6 target_link_libraries(
      7         matrix_coro_example
      8         matrix_coro
      9         cppcoro
     10         spdlog::spdlog
     11 )