From c624c4de5102f8d7525c613bed84050c10cd917e Mon Sep 17 00:00:00 2001 From: kdeng00 Date: Sun, 7 Aug 2022 21:15:07 -0400 Subject: [PATCH 1/3] Missing include --- include/Utilities/Checks.h | 1 + 1 file changed, 1 insertion(+) diff --git a/include/Utilities/Checks.h b/include/Utilities/Checks.h index b4c186d..eb684ea 100644 --- a/include/Utilities/Checks.h +++ b/include/Utilities/Checks.h @@ -2,6 +2,7 @@ #define CHECKS_H_ #include +#include #include #include -- 2.47.3 From 435a0df9419f403d1303d9c921a6cc28fbeaa6cd Mon Sep 17 00:00:00 2001 From: kdeng00 Date: Sun, 7 Aug 2022 21:15:54 -0400 Subject: [PATCH 2/3] Added build files Added Visual studio build files --- IcarusDownloadManager.sln | 31 +++++++ IcarusDownloadManager.vcxproj | 157 ++++++++++++++++++++++++++++++++++ 2 files changed, 188 insertions(+) create mode 100644 IcarusDownloadManager.sln create mode 100644 IcarusDownloadManager.vcxproj diff --git a/IcarusDownloadManager.sln b/IcarusDownloadManager.sln new file mode 100644 index 0000000..df5cd41 --- /dev/null +++ b/IcarusDownloadManager.sln @@ -0,0 +1,31 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio Version 17 +VisualStudioVersion = 17.2.32630.192 +MinimumVisualStudioVersion = 10.0.40219.1 +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "IcarusDownloadManager", "IcarusDownloadManager.vcxproj", "{12955990-643F-4A99-95E5-4752AFA179B0}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|x64 = Debug|x64 + Debug|x86 = Debug|x86 + Release|x64 = Release|x64 + Release|x86 = Release|x86 + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {12955990-643F-4A99-95E5-4752AFA179B0}.Debug|x64.ActiveCfg = Debug|x64 + {12955990-643F-4A99-95E5-4752AFA179B0}.Debug|x64.Build.0 = Debug|x64 + {12955990-643F-4A99-95E5-4752AFA179B0}.Debug|x86.ActiveCfg = Debug|Win32 + {12955990-643F-4A99-95E5-4752AFA179B0}.Debug|x86.Build.0 = Debug|Win32 + {12955990-643F-4A99-95E5-4752AFA179B0}.Release|x64.ActiveCfg = Release|x64 + {12955990-643F-4A99-95E5-4752AFA179B0}.Release|x64.Build.0 = Release|x64 + {12955990-643F-4A99-95E5-4752AFA179B0}.Release|x86.ActiveCfg = Release|Win32 + {12955990-643F-4A99-95E5-4752AFA179B0}.Release|x86.Build.0 = Release|Win32 + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {EA22B463-3EA6-4452-9AF1-D300C3BDE72D} + EndGlobalSection +EndGlobal diff --git a/IcarusDownloadManager.vcxproj b/IcarusDownloadManager.vcxproj new file mode 100644 index 0000000..7fa6cf8 --- /dev/null +++ b/IcarusDownloadManager.vcxproj @@ -0,0 +1,157 @@ + + + + + Debug + Win32 + + + Release + Win32 + + + Debug + x64 + + + Release + x64 + + + + 17.0 + {12955990-643F-4A99-95E5-4752AFA179B0} + Win32Proj + 10.0 + + + + Application + true + v143 + + + Application + false + v143 + + + Application + true + v143 + + + Application + false + v143 + + + + + + + + + + + + + + + + + + + + + true + + + true + + + $(ProjectDir)include;$(IncludePath) + + + $(ProjectDir)include;$(IncludePath) + + + + WIN32;_DEBUG;_WINDOWS;%(PreprocessorDefinitions) + MultiThreadedDebugDLL + Level3 + ProgramDatabase + Disabled + + + MachineX86 + true + Windows + + + + + WIN32;NDEBUG;_WINDOWS;%(PreprocessorDefinitions) + MultiThreadedDLL + Level3 + ProgramDatabase + + + MachineX86 + true + Windows + true + true + + + + + stdcpp20 + + + + + stdcpp20 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file -- 2.47.3 From 77acd151058744a099d147c49e9bf243f670a4a2 Mon Sep 17 00:00:00 2001 From: kdeng00 Date: Sun, 7 Aug 2022 21:34:41 -0400 Subject: [PATCH 3/3] Able to debug with Visual Studio --- src/Main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Main.cpp b/src/Main.cpp index ceec347..73a1980 100644 --- a/src/Main.cpp +++ b/src/Main.cpp @@ -40,7 +40,7 @@ void printHelp() cout<<"-sr directory where to recursively search for songs to upload (Optional)\n"; cout<<"-nc will not prompt the user when uploading from a directory\n\n"; - cout<<"Required for upload\n"; + cout<<"Required for upload with metadata\n"; cout<<"-s path of song\n"; cout<<"-t track number\n"; cout<<"-m metadata filepath\n"; -- 2.47.3