From 02a65ebb580f774c63129bd747a106fc3b3f7944 Mon Sep 17 00:00:00 2001 From: apio Date: Wed, 3 Aug 2022 15:28:59 +0000 Subject: [PATCH] Add UnaryOpNode to CMakeLists.txt --- CMakeLists.txt | 2 ++ 1 file changed, 2 insertions(+) diff --git a/CMakeLists.txt b/CMakeLists.txt index 315f932..33875c9 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -49,6 +49,8 @@ add_executable( src/AST/SumNode.h src/AST/SyscallNode.cpp src/AST/SyscallNode.h + src/AST/UnaryOpNode.cpp + src/AST/UnaryOpNode.h src/utils.cpp src/utils.h src/Parser.cpp