A C++ library for logging very fast and without allocating.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

9 lines
175 B

пре 1 година
пре 1 година
  1. cmake_minimum_required(VERSION 3.23)
  2. project(SnugLog)
  3. set(CMAKE_CXX_STANDARD 20)
  4. set(CMAKE_CXX_STANDARD_REQUIRED True)
  5. add_subdirectory(LibSnugLog)
  6. add_subdirectory(Tests)