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.

CMakeLists.txt 337B

1234567891011121314
  1. cmake_minimum_required(VERSION 3.18)
  2. project(conet)
  3. set(CMAKE_CXX_STANDARD 20)
  4. set(CMAKE_CXX_STANDARD_REQUIRED ON)
  5. set(CMAKE_CXX_EXTENSIONS OFF)
  6. add_executable(conet
  7. aux.h
  8. context.h
  9. peer.h
  10. acceptor.h
  11. main.cpp)
  12. target_compile_options(conet PRIVATE -fcoroutines)