boost-ext / sml

C++14 State Machine library
https://boost-ext.github.io/sml
Boost Software License 1.0
1.14k stars 177 forks source link

Adding boost-ext-sml to conan-center-index #618

Closed elvisdukaj closed 5 months ago

elvisdukaj commented 5 months ago

Hi! Thank you for this great repo! I wanted to add this project to the conan-center-index so it can be consumed also from conan.

I created this PR to add boost-ext-sml. I would really appreciate if you can take a bit of time to review it and share your opinion.

This is how it looks like consuming the recipe:

cmake_minimum_required(VERSION 3.15)
project(test_package LANGUAGES CXX)

find_package(sml REQUIRED CONFIG)

add_executable(test_package test_package.cpp)
target_link_libraries(test_package PRIVATE sml::sml)

To look for the package instead you need to look for boost-ext-sml, similarly for boost-ext-ut.

Let me know what you think!

uyha commented 5 months ago

It already exists: https://conan.io/center/recipes/sml?version=1.1.11

elvisdukaj commented 5 months ago

Ok thank you! I didn’t realize as the banking is pretty confusing: boost-ext-*, sml, next-sml…

Thank you for the quick feedback!