How to properly use uWebSocket in CMake
cmake_minimum_required(VERSION 3.28)
project(MyProject)
set(CMAKE_CXX_STANDARD 20)
add_executable(MyProject main.cpp)
include(FetchContent)
FetchContent_Declare(
uws
GIT_REPOSITORY https://github.com/uNetworking/uWebSockets.git
GIT_TA...
blog.aniketray.me1 min read