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>
This commit is contained in:
15
presentation/CMakeLists.txt
Normal file
15
presentation/CMakeLists.txt
Normal file
@@ -0,0 +1,15 @@
|
||||
set(LATEX_SOURCE_FILE "${CMAKE_CURRENT_SOURCE_DIR}/presentation.tex")
|
||||
|
||||
add_custom_target(presentation
|
||||
COMMAND latexmk -pdf ${LATEX_SOURCE_FILE} -output-directory=build
|
||||
WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}
|
||||
COMMENT "Building LaTeX presentation"
|
||||
SOURCES ${LATEX_SOURCE_FILE}
|
||||
)
|
||||
|
||||
add_custom_target(add_decoy
|
||||
COMMAND pdftk ../DolphinsDecoy.pdf presentation.pdf cat output full_presentation.pdf
|
||||
WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}/build
|
||||
COMMENT "Cha Cha real smooth"
|
||||
SOURCES ${presentation}
|
||||
)
|
||||
Reference in New Issue
Block a user