mirror of
https://github.com/logos-co/logos-messaging-module.git
synced 2026-08-27 10:41:19 +00:00
* update to new api update to new api update to new api replace with boost update flake * Potential fix for pull request finding Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com> --------- Co-authored-by: NagyZoltanPeter <113987313+NagyZoltanPeter@users.noreply.github.com> Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com>
27 lines
670 B
CMake
27 lines
670 B
CMake
cmake_minimum_required(VERSION 3.14)
|
|
project(LogosDeliveryModulePlugin LANGUAGES CXX)
|
|
|
|
# Require C++20
|
|
set(CMAKE_CXX_STANDARD 20)
|
|
set(CMAKE_CXX_STANDARD_REQUIRED ON)
|
|
set(CMAKE_CXX_EXTENSIONS OFF)
|
|
|
|
# Include the Logos Module CMake helper
|
|
if(DEFINED ENV{LOGOS_MODULE_BUILDER_ROOT})
|
|
include($ENV{LOGOS_MODULE_BUILDER_ROOT}/cmake/LogosModule.cmake)
|
|
else()
|
|
message(FATAL_ERROR "LogosModule.cmake not found. Set LOGOS_MODULE_BUILDER_ROOT.")
|
|
endif()
|
|
|
|
# Define the module
|
|
logos_module(
|
|
NAME delivery_module
|
|
SOURCES
|
|
src/delivery_module_plugin.h
|
|
src/delivery_module_plugin.cpp
|
|
EXTERNAL_LIBS
|
|
logosdelivery
|
|
INCLUDE_DIRS
|
|
lib
|
|
)
|