Files
Data-Structure/LinearList/BinaryTree/CMakeLists.txt
2025-08-06 16:22:28 +08:00

10 lines
185 B
CMake

cmake_minimum_required(VERSION 3.31)
project(BTree)
set(CMAKE_CXX_STANDARD 20)
add_executable(BTree main.cpp
binaryTreeNode.h
binaryTree.h
linkedBinaryTree.h)