Adding assignment 1

This commit is contained in:
Christopher Sanden
2025-10-13 17:19:15 +02:00
commit 7a8b356e96
13 changed files with 214 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
cmake_minimum_required(VERSION 3.31)
project(IKT203)
set(CMAKE_CXX_STANDARD 20)
add_executable(IKT203 main.cpp
TMovie.cpp
TMovie.h
TMovieNode.cpp
TMovieNode.h
TMovieList.cpp
TMovieList.h)