Skip to content
This repository has been archived by the owner on Feb 12, 2023. It is now read-only.

Commit

Permalink
fix(v4l): Fixed CMakeLists.txt for v4l on FreeBSD
Browse files Browse the repository at this point in the history
Fix #4459
MATCH FreeBSD was missing in CMakeKusts.txt.
  • Loading branch information
yurivict committed Jun 21, 2017
1 parent 05ba157 commit dfe696e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -434,7 +434,7 @@ if (${CMAKE_SYSTEM_NAME} MATCHES "Windows")
src/platform/camera/directshow.cpp
src/platform/camera/directshow.h
)
elseif (${CMAKE_SYSTEM_NAME} MATCHES "Linux")
elseif (${CMAKE_SYSTEM_NAME} MATCHES "Linux" OR ${CMAKE_SYSTEM_NAME} MATCHES "FreeBSD")
set(${PROJECT_NAME}_SOURCES ${${PROJECT_NAME}_SOURCES}
src/platform/camera/v4l2.cpp
src/platform/camera/v4l2.h
Expand Down

0 comments on commit dfe696e

Please sign in to comment.