init
This commit is contained in:
commit
5962730120
11 changed files with 354 additions and 0 deletions
24
CMakeLists.txt
Normal file
24
CMakeLists.txt
Normal file
|
|
@ -0,0 +1,24 @@
|
|||
|
||||
cmake_minimum_required(VERSION 3.10)
|
||||
project(LolAnalytics VERSION 1.0)
|
||||
|
||||
set(CMAKE_CXX_STANDARD 20)
|
||||
set(CMAKE_CXX_STANDARD_REQUIRED True)
|
||||
|
||||
find_package(Boost REQUIRED COMPONENTS system)
|
||||
find_package(OpenSSL REQUIRED)
|
||||
|
||||
set(CMAKE_EXPORT_COMPILE_COMMANDS ON)
|
||||
|
||||
add_executable(lol_analytics
|
||||
src/main.cpp
|
||||
src/riot.cpp
|
||||
src/network.cpp
|
||||
)
|
||||
|
||||
target_include_directories(lol_analytics PRIVATE include)
|
||||
target_link_libraries(lol_analytics PRIVATE
|
||||
Boost::system
|
||||
OpenSSL::SSL
|
||||
OpenSSL::Crypto
|
||||
)
|
||||
Loading…
Add table
Add a link
Reference in a new issue