Simple project based on previous 1 with boost.

This commit is contained in:
Tomasz Półgrabia 2024-07-07 02:25:02 +02:00
parent 51d11391c1
commit b00350aef5
4 changed files with 71 additions and 0 deletions

View file

@ -0,0 +1,12 @@
from conan import ConanFile
from conan.tools.cmake import cmake_layout
class AlgoBoostConan(ConanFile):
settings = "os", "compiler", "build_type", "arch"
generators = "CMakeDeps", "CMakeToolchain"
def requirements(self):
self.requires("boost/1.85.0")
def layout(self):
cmake_layout(self)