test: Update CMake target source lists with alphabetic sorting

This commit is contained in:
PatTheMav 2023-09-09 00:23:16 +02:00 committed by Ryan Foster
parent dc41069619
commit 163d55d84a
2 changed files with 7 additions and 6 deletions

2
.gitignore vendored
View file

@ -9,7 +9,7 @@
!/docs !/docs
!/libobs* !/libobs*
!/plugins !/plugins
!/tests !/test
!/UI !/UI
!.cirrus.xml !.cirrus.xml
!.clang-format !.clang-format

View file

@ -14,14 +14,15 @@ add_library(OBS::test-input ALIAS test-input)
target_sources( target_sources(
test-input test-input
PRIVATE test-filter.c PRIVATE # cmake-format: sortable
test-input.c
test-sinewave.c
sync-async-source.c sync-async-source.c
sync-audio-buffering.c sync-audio-buffering.c
sync-pair-vid.c
sync-pair-aud.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) target_link_libraries(test-input PRIVATE OBS::libobs)