mirror of
https://github.com/bertptrs/adventofcode.git
synced 2025-12-26 21:30:31 +01:00
Initial set-up for 2019 AoC.
This commit is contained in:
10
2019/CMakeLists.txt
Normal file
10
2019/CMakeLists.txt
Normal file
@@ -0,0 +1,10 @@
|
||||
cmake_minimum_required(VERSION 3.15)
|
||||
|
||||
project(aoc2019)
|
||||
|
||||
add_library(AoCSolutions src/solutions.hpp src/solutions.cpp src/day01.cpp)
|
||||
target_compile_features(AoCSolutions PUBLIC cxx_std_17)
|
||||
|
||||
add_executable(runner src/runner.cpp)
|
||||
target_compile_features(runner PUBLIC cxx_std_17)
|
||||
target_link_libraries(runner AoCSolutions)
|
||||
Reference in New Issue
Block a user