From 30f41c02aec763d32e62351452da9ef582bc3472 Mon Sep 17 00:00:00 2001 From: 3gg <3gg@shellblade.net> Date: Fri, 6 Mar 2026 13:30:59 -0800 Subject: Move contrib libraries to contrib repo --- .../src/hidapi/windows/test/CMakeLists.txt | 76 ---------------------- 1 file changed, 76 deletions(-) delete mode 100644 contrib/SDL-3.2.8/src/hidapi/windows/test/CMakeLists.txt (limited to 'contrib/SDL-3.2.8/src/hidapi/windows/test/CMakeLists.txt') diff --git a/contrib/SDL-3.2.8/src/hidapi/windows/test/CMakeLists.txt b/contrib/SDL-3.2.8/src/hidapi/windows/test/CMakeLists.txt deleted file mode 100644 index eae3217..0000000 --- a/contrib/SDL-3.2.8/src/hidapi/windows/test/CMakeLists.txt +++ /dev/null @@ -1,76 +0,0 @@ -add_executable(hid_report_reconstructor_test hid_report_reconstructor_test.c) -set_target_properties(hid_report_reconstructor_test - PROPERTIES - C_STANDARD 11 - C_STANDARD_REQUIRED TRUE -) - -target_link_libraries(hid_report_reconstructor_test - PRIVATE hidapi_include hidapi_winapi -) - -# Each test case requires 2 files: -# .pp_data - textual representation of HIDP_PREPARSED_DATA; -# _expected.rpt_desc - reconstructed HID Report Descriptor out of .pp_data file; -# -# (Non-required by test): -# _real.dpt_desc - the original report rescriptor used to create a test case; -set(HID_DESCRIPTOR_RECONSTRUCT_TEST_CASES - 046D_C52F_0001_000C - 046D_C52F_0001_FF00 - 046D_C52F_0002_0001 - 046D_C52F_0002_FF00 - 17CC_1130_0000_FF01 - 046D_0A37_0001_000C - 046A_0011_0006_0001 - 046D_C077_0002_0001 - 046D_C283_0004_0001 - 046D_B010_0006_0001 - 046D_B010_0002_FF00 - 046D_B010_0002_0001 - 046D_B010_0001_FF00 - 046D_B010_0001_000C - 046D_C534_0001_000C - 046D_C534_0001_FF00 - 046D_C534_0002_0001 - 046D_C534_0002_FF00 - 046D_C534_0006_0001 - 046D_C534_0080_0001 - 047F_C056_0001_000C - 047F_C056_0003_FFA0 - 047F_C056_0005_000B - 045E_02FF_0005_0001 -) - -set(CMAKE_VERSION_SUPPORTS_ENVIRONMENT_MODIFICATION "3.22") - -if(HIDAPI_ENABLE_ASAN AND MSVC) - if(CMAKE_VERSION VERSION_LESS CMAKE_VERSION_SUPPORTS_ENVIRONMENT_MODIFICATION) - message("CTest/ASAN: Make sure to run ctest from MSVC Command Prompt") - endif() -endif() - -foreach(TEST_CASE ${HID_DESCRIPTOR_RECONSTRUCT_TEST_CASES}) - set(TEST_PP_DATA "${CMAKE_CURRENT_LIST_DIR}/data/${TEST_CASE}.pp_data") - if(NOT EXISTS "${TEST_PP_DATA}") - message(FATAL_ERROR "Missing '${TEST_PP_DATA}' file for '${TEST_CASE}' test case") - endif() - set(TEST_EXPECTED_DESCRIPTOR "${CMAKE_CURRENT_LIST_DIR}/data/${TEST_CASE}_expected.rpt_desc") - if(NOT EXISTS "${TEST_EXPECTED_DESCRIPTOR}") - message(FATAL_ERROR "Missing '${TEST_EXPECTED_DESCRIPTOR}' file for '${TEST_CASE}' test case") - endif() - - add_test(NAME "WinHidReportReconstructTest_${TEST_CASE}" - COMMAND hid_report_reconstructor_test "${TEST_PP_DATA}" "${TEST_EXPECTED_DESCRIPTOR}" - WORKING_DIRECTORY "$" - ) - if(HIDAPI_ENABLE_ASAN) - if(MSVC) - if(NOT CMAKE_VERSION VERSION_LESS CMAKE_VERSION_SUPPORTS_ENVIRONMENT_MODIFICATION) - get_filename_component(MSVC_BUILD_TOOLS_DIR "${CMAKE_LINKER}" DIRECTORY) - set_property(TEST "WinHidReportReconstructTest_${TEST_CASE}" PROPERTY ENVIRONMENT_MODIFICATION "PATH=path_list_append:${MSVC_BUILD_TOOLS_DIR}") - endif() - endif() - set_property(TEST "WinHidReportReconstructTest_${TEST_CASE}" PROPERTY ENVIRONMENT "ASAN_SAVE_DUMPS=AsanDump_${TEST_CASE}.dmp") - endif() -endforeach() -- cgit v1.2.3