blob: 1b2e67c7f143f59dbc87c8dab39efa5ca40e8694 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
|
cmake_minimum_required(VERSION 3.0)
project(142-bot VERSION 0.1 LANGUAGES CXX C)
set(CMAKE_CXX_STANDARD 20 REQUIRED)
include(FetchContent)
FetchContent_Declare(clog
GIT_REPOSITORY https://git.devcara.com/clog
GIT_TAG 0.1.0
)
FetchContent_Declare(dpp
GIT_REPOSITORY https://github.com/brainboxdotcc/DPP
GIT_TAG v10.0.23
)
FetchContent_MakeAvailable(clog dpp)
find_package(fmt)
string(ASCII 27 Esc)
aux_source_directory("src" coresrc)
add_executable(142bot ${coresrc})
include_directories("include")
target_link_libraries(142bot clog dpp fmt spdlog)
set (modules_dir "modules")
file(GLOB subdirlist ${modules_dir}/*)
foreach (fullmodname ${subdirlist})
get_filename_component(modname ${fullmodname} NAME)
message(STATUS "Found module '${Esc}[1;34mmodule_${modname}${Esc}[m'")
set (modsrc "")
aux_source_directory(${modules_dir}/${modname} modsrc)
add_library(module_${modname} SHARED ${modsrc})
set_target_properties(module_${modname} PROPERTIES PREFIX "")
endforeach(fullmodname)
|