cmake_minimum_required(VERSION 3.21) project(tree_preorder_traversal) set(CMAKE_CXX_STANDARD 14) add_executable(tree_preorder_traversal main.cpp)