From 163d55d84a8b1a3d7ba8c13c782dcededdd64d23 Mon Sep 17 00:00:00 2001 From: PatTheMav Date: Sat, 9 Sep 2023 00:23:16 +0200 Subject: [PATCH] test: Update CMake target source lists with alphabetic sorting --- .gitignore | 2 +- test/test-input/CMakeLists.txt | 11 ++++++----- 2 files changed, 7 insertions(+), 6 deletions(-) diff --git a/.gitignore b/.gitignore index 4c30feb4a..0443d1740 100644 --- a/.gitignore +++ b/.gitignore @@ -9,7 +9,7 @@ !/docs !/libobs* !/plugins -!/tests +!/test !/UI !.cirrus.xml !.clang-format diff --git a/test/test-input/CMakeLists.txt b/test/test-input/CMakeLists.txt index 0a03319e0..c364c8843 100644 --- a/test/test-input/CMakeLists.txt +++ b/test/test-input/CMakeLists.txt @@ -14,14 +14,15 @@ add_library(OBS::test-input ALIAS test-input) target_sources( test-input - PRIVATE test-filter.c - test-input.c - test-sinewave.c + PRIVATE # cmake-format: sortable sync-async-source.c sync-audio-buffering.c - sync-pair-vid.c sync-pair-aud.c - test-random.c) + sync-pair-vid.c + test-filter.c + test-input.c + test-random.c + test-sinewave.c) target_link_libraries(test-input PRIVATE OBS::libobs)