This repository has been archived on 2024-05-08. You can view files and clone it, but cannot push or open issues or pull requests.
RLogs/CMakeLists.txt
2022-11-07 21:52:11 +03:00

12 lines
467 B
CMake
Executable File

cmake_minimum_required(VERSION 3.12)
project(RLogs)
add_subdirectory(dependencies)
INCLUDE_DIRECTORIES("dependencies/argparse/include/" ".")
INCLUDE_DIRECTORIES("dependencies/websocketpp/" ".")
INCLUDE_DIRECTORIES("dependencies/json/include/" ".")
find_package(Boost COMPONENTS system)
set(CMAKE_CXX_STANDARD 17)
SET(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -lboost_system -lpthread -lcrypto -lssl")
add_executable(RLogs src/main.cpp src/connection.cpp src/connection.h)