IDMASK V0.5

This commit is contained in:
2025-10-05 11:19:59 +02:00
parent 1e77f7cdaf
commit aff55c4ff9
2 changed files with 50 additions and 0 deletions

15
CMakeLists.txt Normal file
View File

@@ -0,0 +1,15 @@
cmake_minimum_required(VERSION 3.10)
project(IDMASK)
# Recherche OpenCV avec pkg-config
find_package(PkgConfig REQUIRED)
pkg_check_modules(OpenCV REQUIRED opencv4)
# Définir les répertoires d'en-têtes
include_directories(${OpenCV_INCLUDE_DIRS})
# Création de l'exécutable
add_executable(IDMASK main.cpp)
# Lier les bibliothèques OpenCV à ton projet
target_link_libraries(IDMASK ${OpenCV_LIBRARIES})