mirror of
https://github.com/WarmUpTill/SceneSwitcher.git
synced 2026-08-05 12:26:59 -05:00
This makes it easier to conditionally exclude video-edit-object.cpp from the build when OpenCV >= 5 drops CascadeClassifier support.
8 lines
333 B
CMake
8 lines
333 B
CMake
# Injected via CMAKE_PROJECT_INCLUDE after opencv's project() call. Forces
|
|
# CMAKE_SYSTEM_PROCESSOR into the cache so that third-party subdirectories
|
|
# (mlas) that read the cache directly see x86_64 instead of the arm64 host
|
|
# processor on Apple Silicon CI runners.
|
|
set(CMAKE_SYSTEM_PROCESSOR
|
|
x86_64
|
|
CACHE INTERNAL "" FORCE)
|