From 1dfe64b02d66301c1c30e8642ee4de4192a553e5 Mon Sep 17 00:00:00 2001 From: Eric Mertens Date: Tue, 8 Nov 2022 11:15:13 -0800 Subject: [PATCH] faster --- 2019/CMakeLists.txt | 3 +++ 1 file changed, 3 insertions(+) diff --git a/2019/CMakeLists.txt b/2019/CMakeLists.txt index 034eea6..3841493 100644 --- a/2019/CMakeLists.txt +++ b/2019/CMakeLists.txt @@ -28,6 +28,9 @@ target_link_libraries(09 aocpp intcode) add_executable(11 11.cpp) target_link_libraries(11 aocpp intcode) +add_executable(12 12.cpp) +target_link_libraries(12 aocpp) + add_executable(13 13.cpp) target_link_libraries(13 aocpp intcode)