Scaffold day 1
This commit is contained in:
commit
c093e8a4bf
5 changed files with 1058 additions and 0 deletions
1045
.gitignore
vendored
Normal file
1045
.gitignore
vendored
Normal file
File diff suppressed because it is too large
Load diff
6
CMakeLists.txt
Normal file
6
CMakeLists.txt
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
cmake_minimum_required(VERSION 3.10.0)
|
||||
project(aoc25 VERSION 0.1.0 LANGUAGES C CXX)
|
||||
|
||||
# Per-day subprojects (example: day1)
|
||||
add_subdirectory(day1)
|
||||
|
||||
2
day1/CMakeLists.txt
Normal file
2
day1/CMakeLists.txt
Normal file
|
|
@ -0,0 +1,2 @@
|
|||
add_executable(day1 main.cpp)
|
||||
set_target_properties(day1 PROPERTIES CXX_STANDARD 17 CXX_STANDARD_REQUIRED ON)
|
||||
0
day1/day1_input
Normal file
0
day1/day1_input
Normal file
5
day1/main.cpp
Normal file
5
day1/main.cpp
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
#include <iostream>
|
||||
|
||||
int main(int, char**){
|
||||
std::cout << "Hello, from aoc25 day1!\n";
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue