BeamMP-Launcher/CMakeLists.txt
2020-03-25 22:00:06 +02:00

11 lines
289 B
CMake

cmake_minimum_required(VERSION 3.15)
include_directories(${PROJECT_SOURCE_DIR}/include)
project(BeamNG-MP-Launcher)
set(CMAKE_CXX_STANDARD 14)
add_executable(BeamNG-MP-Launcher main.cpp proxy.cpp Security.cpp http.cpp Discord.cpp)
target_link_libraries(BeamNG-MP-Launcher discord-rpc)