Added CMakeLists.txt to File-Downloader

This commit is contained in:
2026-04-07 10:40:19 +02:00
commit 2c1fbaf4c6
10 changed files with 399 additions and 0 deletions

13
main.cpp Normal file
View File

@@ -0,0 +1,13 @@
#include "downloader.h"
int main()
{
// Get a valid URL from the user
std::string i_url = console::getValidURL();
// Download
FileDownloader fdl(i_url.c_str());
fdl.download();
return 0;
}