Created the CMakeLists.txt
This commit is contained in:
parent
d307218666
commit
a87d5ecdbf
14
CMakeLists.txt
Normal file
14
CMakeLists.txt
Normal file
@ -0,0 +1,14 @@
|
||||
cmake_minimum_required(VERSION 3.26)
|
||||
project(Bot)
|
||||
|
||||
set(CMAKE_CXX_STANDARD 17)
|
||||
|
||||
file(GLOB SRC_FILES "src/listeners/*.cpp" "src/api/*.cpp")
|
||||
|
||||
include_directories(src)
|
||||
|
||||
find_package(dpp REQUIRED)
|
||||
|
||||
add_executable(Bot src/main.cpp ${SRC_FILES})
|
||||
|
||||
target_link_libraries(Bot dpp)
|
Loading…
x
Reference in New Issue
Block a user