From 122ca3af3d27b49eaf7f95f5bf2e8e7fe2ba1cb8 Mon Sep 17 00:00:00 2001 From: Firewire Date: Mon, 1 Dec 2025 16:32:51 -0500 Subject: [PATCH] Clean up directory --- CMakeLists.txt | 6 +++--- src/day1/{p1/faf.cpp => p1-faf.cpp} | 0 src/day1/{p1/main.cpp => p1.cpp} | 0 src/day1/{p2/main.cpp => p2.cpp} | 0 4 files changed, 3 insertions(+), 3 deletions(-) rename src/day1/{p1/faf.cpp => p1-faf.cpp} (100%) rename src/day1/{p1/main.cpp => p1.cpp} (100%) rename src/day1/{p2/main.cpp => p2.cpp} (100%) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4a5f095..e404a93 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -29,7 +29,7 @@ include_directories(src/common) ### Day 1 # P1 -add_executable(d1p1 src/day1/p1/main.cpp) -add_executable(d1p1-faf src/day1/p1/faf.cpp) +add_executable(d1p1 src/day1/p1.cpp) +add_executable(d1p1-faf src/day1/p1-faf.cpp) # P2 -add_executable(d1p2 src/day1/p2/main.cpp) \ No newline at end of file +add_executable(d1p2 src/day1/p2.cpp) \ No newline at end of file diff --git a/src/day1/p1/faf.cpp b/src/day1/p1-faf.cpp similarity index 100% rename from src/day1/p1/faf.cpp rename to src/day1/p1-faf.cpp diff --git a/src/day1/p1/main.cpp b/src/day1/p1.cpp similarity index 100% rename from src/day1/p1/main.cpp rename to src/day1/p1.cpp diff --git a/src/day1/p2/main.cpp b/src/day1/p2.cpp similarity index 100% rename from src/day1/p2/main.cpp rename to src/day1/p2.cpp