* Add presentation template. * Start with presentation. * Small fixes * Extend section on exploit primitives * Extend program slide * added exploit explanation and cool profit image * added decoy presentation. Add to normal presentation with make add_decoy --------- Co-authored-by: Simon Bußmann <simon.bussmann@tum.de>
11 lines
276 B
CMake
11 lines
276 B
CMake
cmake_minimum_required(VERSION 3.18)
|
|
project(project C)
|
|
|
|
set(CMAKE_C_STANDARD 11)
|
|
|
|
set(CMAKE_C_FLAGS "-Wall -Werror -g -fstack-protector -fshort-enums -z noexecstack -z relro -z now -pie -fPIE -Wl,-z,relro,-z,now")
|
|
|
|
add_executable(vuln vuln.c)
|
|
|
|
add_subdirectory(presentation)
|