cmake_minimum_required(VERSION 3.15)
project(Tut07_inheritance)

add_library(tut_compiler_flags INTERFACE)

target_compile_options(tut_compiler_flags INTERFACE "-g;-O0")

add_executable(shapes main.cpp Shapes.cpp)

target_link_libraries(shapes PUBLIC tut_compiler_flags)

