reorganization
Some checks failed
CI / React UI Build (push) Successful in 11s
CI / Native Windows Build And Tests (push) Failing after 2m33s
CI / Windows Release Package (push) Has been skipped

This commit is contained in:
2026-05-22 15:06:26 +10:00
parent b7e7452567
commit 7bf5464fd2
43 changed files with 37 additions and 27 deletions

View File

@@ -36,6 +36,10 @@ set(VIDEO_SHADER_INCLUDE_DIRS
"${SRC_DIR}/shader"
"${SRC_DIR}/telemetry"
"${SRC_DIR}/video"
"${SRC_DIR}/video/core"
"${SRC_DIR}/video/decklink"
"${SRC_DIR}/video/legacy"
"${SRC_DIR}/video/playout"
)
function(video_shader_target_defaults target)
@@ -121,8 +125,8 @@ set(MSDF_ATLAS_GEN_README_FILE "${MSDF_ATLAS_GEN_ROOT}/README.md")
set(RENDER_CADENCE_APP_REQUIRED_FILES
"${SRC_DIR}/RenderCadenceCompositor.cpp"
"${SRC_DIR}/video/DeckLinkAPI_i.c"
"${SRC_DIR}/video/DeckLinkAPI_h.h"
"${SRC_DIR}/video/decklink/DeckLinkAPI_i.c"
"${SRC_DIR}/video/decklink/DeckLinkAPI_h.h"
)
video_shader_files_exist(RENDER_CADENCE_APP_MISSING_FILES ${RENDER_CADENCE_APP_REQUIRED_FILES})
@@ -138,8 +142,8 @@ else()
"${SRC_DIR}/*.h"
)
list(REMOVE_ITEM RENDER_CADENCE_APP_SOURCES
"${SRC_DIR}/video/VideoBackend.cpp"
"${SRC_DIR}/video/VideoBackend.h"
"${SRC_DIR}/video/legacy/VideoBackend.cpp"
"${SRC_DIR}/video/legacy/VideoBackend.h"
)
add_executable(RenderCadenceCompositor ${RENDER_CADENCE_APP_SOURCES})