Skip to content

Instantly share code, notes, and snippets.

@VxDxK
Created September 20, 2020 12:43
Show Gist options
  • Save VxDxK/632c2e4378d44ecd91d2741321190997 to your computer and use it in GitHub Desktop.
Save VxDxK/632c2e4378d44ecd91d2741321190997 to your computer and use it in GitHub Desktop.
cmake_minimum_required(VERSION 3.17)
project(WebSocket)
find_package(Boost REQUIRED COMPONENTS system)
include_directories( . ${Boost_INCLUDE_DIRS})
set(CMAKE_CXX_STANDARD 11)
add_executable(WebSocket main.cpp User.cpp User.h)
target_link_libraries(WebSocket LINK_PUBLIC ${Boost_LIBRARIES})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment