-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconanfile.py
More file actions
55 lines (40 loc) · 1.61 KB
/
Copy pathconanfile.py
File metadata and controls
55 lines (40 loc) · 1.61 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
from conan import ConanFile
from conan.tools.cmake import CMakeToolchain, CMake, cmake_layout, CMakeDeps
class mainRecipe(ConanFile):
name = "main"
version = "0.1"
package_type = "application"
# Optional metadata
license = "MIT"
author = "Kaan Mert Ağyol <kaanmertagyol@gmail.com>"
url = "https://github.com/randomizeduser2/tinyml-on-microchips"
description = "TinyML kapsamında Edge impulse üzerinde eğitilen modelin OpenCV ve TensorFlow Lite kullanılarak C++ ile gerçek zamanlı video akışında çalıştırılması"
topics = ("TinyML", "Edge Impulse", "OpenCV", "TensorFlow Lite", "C++")
# Binary configuration
settings = "os", "compiler", "build_type", "arch"
# Sources are located in the same place as this recipe, copy them to the recipe
exports_sources = "CMakeLists.txt", "src/*"
def layout(self):
cmake_layout(self)
# Bağımlılıklar
def requirements(self):
self.requires("fmt/12.1.0")
self.requires("opencv/4.12.0")
self.requires("tensorflow-lite/2.15.0")
def configure(self):
# OpenCV'nin kamera ve GUI için izinlerinin etklinleştirilmesi
self.options["opencv"].with_v4l = True
self.options["opencv"].with_gtk = True
self.options["opencv"].videoio = True
def generate(self):
deps = CMakeDeps(self)
deps.generate()
tc = CMakeToolchain(self)
tc.generate()
def build(self):
cmake = CMake(self)
cmake.configure()
cmake.build()
def package(self):
cmake = CMake(self)
cmake.install()