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