cleanup: remove VSDev camera implementation, remove symbols from CI because they are unreasonably big, mac CI tmp upload

This commit is contained in:
milek7
2021-01-24 23:38:13 +01:00
parent 610ae75b17
commit 158c42b5f0
11 changed files with 15 additions and 284 deletions

View File

@@ -49,7 +49,6 @@ option(WITH_OPENGL_LEGACY "Compile with OpenGL legacy renderer" ON)
option(WITH_UART "Compile with libserialport" ON)
option(WITH_OPENVR "Compile with OpenVR" ON)
option(WITH_ZMQ "Compile with cppzmq" OFF)
option(USE_VSDEV_CAMERA "Use VS_Dev camera preview implementation" OFF)
option(USE_LTO "Use link-time optimization" OFF)
set(SOURCES
@@ -240,13 +239,7 @@ if (WITH_OPENGL_LEGACY)
add_definitions(-DWITH_OPENGL_LEGACY)
endif()
if (USE_VSDEV_CAMERA)
add_definitions(-DUSE_VSDEV_CAMERA)
set(SOURCES ${SOURCES} "extras/VS_Dev.cpp" "widgets/cameraview_vsdev.cpp")
else()
add_definitions(-DUSE_EXTCAM_CAMERA)
set(SOURCES ${SOURCES} "extras/piped_proc.cpp" "widgets/cameraview_extcam.cpp")
endif()
set(SOURCES ${SOURCES} "extras/piped_proc.cpp" "widgets/cameraview_extcam.cpp")
find_package(Git REQUIRED)