Continue conan integration

This commit is contained in:
2025-06-28 11:06:16 +02:00
parent 91df2f5e02
commit 8807cd513c
4 changed files with 17 additions and 2 deletions

View File

@@ -1,6 +1,7 @@
import re
from conan import ConanFile
from conan.tools.files import copy
from conan.tools.cmake import CMakeToolchain
class FoldingConan(ConanFile):
@@ -26,6 +27,10 @@ class FoldingConan(ConanFile):
self.test_requires("arff-files/1.2.0")
self.test_requires("fimdlp/2.0.1")
def generate(self):
tc = CMakeToolchain(self)
tc.generate()
def init(self):
# Read the CMakeLists.txt file to get the version
with open("folding.hpp", "r") as f: