From 210404a73706993d197c1290d5a411394e176fbe Mon Sep 17 00:00:00 2001 From: Aldrik Ramaekers Date: Fri, 9 Jan 2026 15:28:38 +0100 Subject: remove unused lib files --- libs/timer_lib/.gitattributes | 22 ----- libs/timer_lib/.gitignore | 163 ------------------------------ libs/timer_lib/Makefile | 23 ----- libs/timer_lib/test.vcxproj | 169 ------------------------------- libs/timer_lib/timer.sln | 36 ------- libs/timer_lib/timer.vcxproj | 225 ------------------------------------------ 6 files changed, 638 deletions(-) delete mode 100644 libs/timer_lib/.gitattributes delete mode 100644 libs/timer_lib/.gitignore delete mode 100644 libs/timer_lib/Makefile delete mode 100644 libs/timer_lib/test.vcxproj delete mode 100644 libs/timer_lib/timer.sln delete mode 100644 libs/timer_lib/timer.vcxproj (limited to 'libs/timer_lib') diff --git a/libs/timer_lib/.gitattributes b/libs/timer_lib/.gitattributes deleted file mode 100644 index 412eeda..0000000 --- a/libs/timer_lib/.gitattributes +++ /dev/null @@ -1,22 +0,0 @@ -# Auto detect text files and perform LF normalization -* text=auto - -# Custom for Visual Studio -*.cs diff=csharp -*.sln merge=union -*.csproj merge=union -*.vbproj merge=union -*.fsproj merge=union -*.dbproj merge=union - -# Standard to msysgit -*.doc diff=astextplain -*.DOC diff=astextplain -*.docx diff=astextplain -*.DOCX diff=astextplain -*.dot diff=astextplain -*.DOT diff=astextplain -*.pdf diff=astextplain -*.PDF diff=astextplain -*.rtf diff=astextplain -*.RTF diff=astextplain diff --git a/libs/timer_lib/.gitignore b/libs/timer_lib/.gitignore deleted file mode 100644 index 5ebd21a..0000000 --- a/libs/timer_lib/.gitignore +++ /dev/null @@ -1,163 +0,0 @@ -################# -## Eclipse -################# - -*.pydevproject -.project -.metadata -bin/ -tmp/ -*.tmp -*.bak -*.swp -*~.nib -local.properties -.classpath -.settings/ -.loadpath - -# External tool builders -.externalToolBuilders/ - -# Locally stored "Eclipse launch configurations" -*.launch - -# CDT-specific -.cproject - -# PDT-specific -.buildpath - - -################# -## Visual Studio -################# - -## Ignore Visual Studio temporary files, build results, and -## files generated by popular Visual Studio add-ons. - -# User-specific files -*.suo -*.user -*.sln.docstates - -# Build results -[Dd]ebug/ -[Rr]elease/ -*_i.c -*_p.c -*.ilk -*.meta -*.obj -*.pch -*.pdb -*.pgc -*.pgd -*.rsp -*.sbr -*.tlb -*.tli -*.tlh -*.tmp -*.vspscc -.builds -*.dotCover - -## TODO: If you have NuGet Package Restore enabled, uncomment this -#packages/ - -# Visual C++ cache files -ipch/ -*.aps -*.ncb -*.opensdf -*.sdf - -# Visual Studio profiler -*.psess -*.vsp - -# ReSharper is a .NET coding add-in -_ReSharper* - -# Installshield output folder -[Ee]xpress - -# DocProject is a documentation generator add-in -DocProject/buildhelp/ -DocProject/Help/*.HxT -DocProject/Help/*.HxC -DocProject/Help/*.hhc -DocProject/Help/*.hhk -DocProject/Help/*.hhp -DocProject/Help/Html2 -DocProject/Help/html - -# Click-Once directory -publish - -# Others -[Bb]in -[Oo]bj -sql -TestResults -*.Cache -ClientBin -stylecop.* -~$* -*.dbmdl -Generated_Code #added for RIA/Silverlight projects - -# Backup & report files from converting an old project file to a newer -# Visual Studio version. Backup files are not needed, because we have git ;-) -_UpgradeReport_Files/ -Backup*/ -UpgradeLog*.XML - - - -############ -## Windows -############ - -# Windows image file caches -Thumbs.db - -# Folder config file -Desktop.ini - - -############# -## Python -############# - -*.py[co] - -# Packages -*.egg -*.egg-info -dist -build -eggs -parts -bin -var -sdist -develop-eggs -.installed.cfg - -# Installer logs -pip-log.txt - -# Unit test / coverage reports -.coverage -.tox - -#Translations -*.mo - -#Mr Developer -.mr.developer.cfg - -# Mac crap -.DS_Store diff --git a/libs/timer_lib/Makefile b/libs/timer_lib/Makefile deleted file mode 100644 index 3edaf73..0000000 --- a/libs/timer_lib/Makefile +++ /dev/null @@ -1,23 +0,0 @@ -SRC = timer.c -OBJ = $(SRC:.c=.o) -OUT = libtimer.a -TST = timertest -TSR = test.c -TOB = $(TSR:.c=.o) - -CFLAGS = -O3 -LDFLAGS = - -default: $(OUT) $(TST) - -.c.o: - gcc $(CFLAGS) -c $< -o $@ - -$(OUT): $(OBJ) - ar rcs $(OUT) $(OBJ) - -$(TST): $(OUT) $(TOB) - gcc $(CFLAGS) $(LDFLAGS) -o $(TST) $(TOB) $(OUT) -lrt - -clean: - rm -f $(OBJ) $(OUT) $(TOB) $(TST) diff --git a/libs/timer_lib/test.vcxproj b/libs/timer_lib/test.vcxproj deleted file mode 100644 index 468b70e..0000000 --- a/libs/timer_lib/test.vcxproj +++ /dev/null @@ -1,169 +0,0 @@ - - - - - Debug - Win32 - - - Debug - x64 - - - Release - Win32 - - - Release - x64 - - - - {54E95B82-7759-4825-9478-91E76F1C1C89} - Win32Proj - test - 10.0 - - - - Application - true - Unicode - v143 - - - Application - true - Unicode - v143 - - - Application - false - true - Unicode - v143 - - - Application - false - true - Unicode - v143 - - - - - - - - - - - - - - - - - - - true - - - true - build\$(ProjectName)\$(Platform)\$(Configuration)\ - build\$(ProjectName)\$(Platform)\$(Configuration)\ - - - false - - - false - build\$(ProjectName)\$(Platform)\$(Configuration)\ - build\$(ProjectName)\$(Platform)\$(Configuration)\ - - - - - - Level3 - Disabled - WIN32;_DEBUG;_CONSOLE;%(PreprocessorDefinitions) - MultiThreadedDebug - ../platform_lib - - - Console - true - winmm.lib;%(AdditionalDependencies) - - - - - - - Level3 - Disabled - WIN32;_DEBUG;_CONSOLE;%(PreprocessorDefinitions) - MultiThreadedDebug - ../platform_lib - - - Console - true - winmm.lib;%(AdditionalDependencies) - - - - - Level3 - - - MaxSpeed - true - true - WIN32;NDEBUG;_CONSOLE;%(PreprocessorDefinitions) - MultiThreaded - ../platform_lib - - - Console - true - true - true - winmm.lib;%(AdditionalDependencies) - - - - - Level3 - - - MaxSpeed - true - true - WIN32;NDEBUG;_CONSOLE;%(PreprocessorDefinitions) - MultiThreaded - ../platform_lib - - - Console - true - true - true - winmm.lib;%(AdditionalDependencies) - - - - - - - - {321bab92-2ede-4b3b-939d-bd0be0248c8f} - - - - - - \ No newline at end of file diff --git a/libs/timer_lib/timer.sln b/libs/timer_lib/timer.sln deleted file mode 100644 index 0146411..0000000 --- a/libs/timer_lib/timer.sln +++ /dev/null @@ -1,36 +0,0 @@ - -Microsoft Visual Studio Solution File, Format Version 11.00 -# Visual Studio 2010 -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "timer", "timer.vcxproj", "{321BAB92-2EDE-4B3B-939D-BD0BE0248C8F}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "test", "test.vcxproj", "{54E95B82-7759-4825-9478-91E76F1C1C89}" -EndProject -Global - GlobalSection(SolutionConfigurationPlatforms) = preSolution - Debug|Win32 = Debug|Win32 - Debug|x64 = Debug|x64 - Release|Win32 = Release|Win32 - Release|x64 = Release|x64 - EndGlobalSection - GlobalSection(ProjectConfigurationPlatforms) = postSolution - {321BAB92-2EDE-4B3B-939D-BD0BE0248C8F}.Debug|Win32.ActiveCfg = Debug|Win32 - {321BAB92-2EDE-4B3B-939D-BD0BE0248C8F}.Debug|Win32.Build.0 = Debug|Win32 - {321BAB92-2EDE-4B3B-939D-BD0BE0248C8F}.Debug|x64.ActiveCfg = Debug|x64 - {321BAB92-2EDE-4B3B-939D-BD0BE0248C8F}.Debug|x64.Build.0 = Debug|x64 - {321BAB92-2EDE-4B3B-939D-BD0BE0248C8F}.Release|Win32.ActiveCfg = Release|Win32 - {321BAB92-2EDE-4B3B-939D-BD0BE0248C8F}.Release|Win32.Build.0 = Release|Win32 - {321BAB92-2EDE-4B3B-939D-BD0BE0248C8F}.Release|x64.ActiveCfg = Release|x64 - {321BAB92-2EDE-4B3B-939D-BD0BE0248C8F}.Release|x64.Build.0 = Release|x64 - {54E95B82-7759-4825-9478-91E76F1C1C89}.Debug|Win32.ActiveCfg = Debug|Win32 - {54E95B82-7759-4825-9478-91E76F1C1C89}.Debug|Win32.Build.0 = Debug|Win32 - {54E95B82-7759-4825-9478-91E76F1C1C89}.Debug|x64.ActiveCfg = Debug|x64 - {54E95B82-7759-4825-9478-91E76F1C1C89}.Debug|x64.Build.0 = Debug|x64 - {54E95B82-7759-4825-9478-91E76F1C1C89}.Release|Win32.ActiveCfg = Release|Win32 - {54E95B82-7759-4825-9478-91E76F1C1C89}.Release|Win32.Build.0 = Release|Win32 - {54E95B82-7759-4825-9478-91E76F1C1C89}.Release|x64.ActiveCfg = Release|x64 - {54E95B82-7759-4825-9478-91E76F1C1C89}.Release|x64.Build.0 = Release|x64 - EndGlobalSection - GlobalSection(SolutionProperties) = preSolution - HideSolutionNode = FALSE - EndGlobalSection -EndGlobal diff --git a/libs/timer_lib/timer.vcxproj b/libs/timer_lib/timer.vcxproj deleted file mode 100644 index 83e5ded..0000000 --- a/libs/timer_lib/timer.vcxproj +++ /dev/null @@ -1,225 +0,0 @@ - - - - - Debug - Win32 - - - Debug - x64 - - - Release - Win32 - - - Release - x64 - - - - - - - - - - {321BAB92-2EDE-4B3B-939D-BD0BE0248C8F} - Win32Proj - timer - 10.0 - - - - StaticLibrary - true - Unicode - v143 - - - StaticLibrary - true - Unicode - v143 - - - StaticLibrary - false - true - Unicode - v143 - - - StaticLibrary - false - true - Unicode - v143 - - - - - - - - - - - - - - - - - - - $(SolutionDir) - $(Platform)\$(Configuration)\ - $(ProjectName)32d - - - $(SolutionDir) - build\$(ProjectName)\$(Platform)\$(Configuration)\ - $(ProjectName)64d - - - $(SolutionDir) - $(Platform)\$(Configuration)\ - $(ProjectName)32 - - - $(SolutionDir) - build\$(ProjectName)\$(Platform)\$(Configuration)\ - $(ProjectName)64 - - - - - - Level3 - Disabled - TIMER_COMPILE;%(PreprocessorDefinitions) - ProgramDatabase - false - false - false - false - false - false - MultiThreadedDebug - false - Fast - false - false - false - false - - - - - Windows - true - - - - - - - Level3 - Disabled - TIMER_COMPILE;%(PreprocessorDefinitions) - ProgramDatabase - false - false - false - false - false - false - MultiThreadedDebug - false - Fast - false - false - false - false - - - - - Windows - true - - - - - Level3 - - - MaxSpeed - false - true - TIMER_COMPILE;%(PreprocessorDefinitions) - ProgramDatabase - false - false - Speed - false - true - true - false - MultiThreaded - false - Fast - false - false - false - false - - - - - Windows - true - true - true - - - - - Level3 - - - MaxSpeed - false - true - TIMER_COMPILE;%(PreprocessorDefinitions) - ProgramDatabase - false - false - Speed - false - true - true - false - MultiThreaded - false - Fast - false - false - false - false - - - - - Windows - true - true - true - - - - - - \ No newline at end of file -- cgit v1.2.3-70-g09d2