cis22c-project/CMakeLists.txt
Iurii Tatishchev c6243e2314
fix template classes
apparently you can't have template stuff in .cpp files after all, lesson learned.
2024-06-17 22:07:55 -07:00

24 lines
446 B
CMake

cmake_minimum_required(VERSION 3.28)
project(08_team_project)
set(CMAKE_CXX_STANDARD 20)
add_executable(08_team_project main.cpp
utils.h
utils.cpp
BinaryTreeNode.h
BinaryTree.h
BinarySearchTree.h
HashNode.h
HashTable.h
CPU.h
CPU.cpp
Stack.h
StackNode.h
fio.h
fio.cpp
DisplayManager.h
UndoManager.h
SearchManager.h
)