Simple project based on previous 1 with boost.
This commit is contained in:
parent
51d11391c1
commit
b00350aef5
4 changed files with 71 additions and 0 deletions
12
2024/07/cpp_algorithms2/conanfile.py
Normal file
12
2024/07/cpp_algorithms2/conanfile.py
Normal 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)
|
Loading…
Add table
Add a link
Reference in a new issue