Files
BinexProject/CMakeLists.txt
Maier Johannes 4654c8b6be Presentation (#7)
* 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>
2024-02-05 18:22:36 +01:00

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)