mirror of
https://github.com/BeamMP/BeamMP-Launcher.git
synced 2025-07-03 00:16:50 +00:00
11 lines
289 B
CMake
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) |