This repository has been archived by the owner on Jan 31, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
CMakeLists.txt
75 lines (66 loc) · 2.38 KB
/
CMakeLists.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
# ____ _ ____ ___ _______
# | _ \ ___ | |__ ___ | _ \ / \ \ / / ____|
# | |_) / _ \| '_ \ / _ \| |_) | / _ \ \ / /| _|
# | _ < (_) | |_) | (_) | _ < / ___ \ V / | |___
# |_| \_\___/|_.__/ \___/|_| \_\/_/ \_\_/ |_____|
#
cmake_minimum_required(VERSION 3.10)
project(roborave-de-rules VERSION 2020)
find_program(GIT_BIN git)
find_program(XELATEX_BIN xelatex)
# -----------------------------------------------------------------------------
# Set document ID
# -----------------------------------------------------------------------------
if(NOT GIT_BIN)
set(COMMIT_ID "")
set(TAG_YEAR "")
set(COMMIT_DATE "")
message(WARNING "git not found!")
else()
execute_process(
COMMAND ${GIT_BIN} rev-parse --short=8 HEAD
OUTPUT_VARIABLE COMMIT_ID
OUTPUT_STRIP_TRAILING_WHITESPACE
COMMAND_ECHO STDOUT
)
execute_process(
COMMAND ${GIT_BIN} describe --tags --abbrev=0
OUTPUT_VARIABLE TAG_YEAR
OUTPUT_STRIP_TRAILING_WHITESPACE
COMMAND_ECHO STDOUT
)
execute_process(
COMMAND ${GIT_BIN} --no-pager show -s --format=%as HEAD
OUTPUT_VARIABLE COMMIT_DATE
OUTPUT_STRIP_TRAILING_WHITESPACE
COMMAND_ECHO STDOUT
)
endif()
configure_file(version.tex.in version.tex @ONLY)
# -----------------------------------------------------------------------------
# Configure theme
# -----------------------------------------------------------------------------
set(RRGER_LOGO "${CMAKE_CURRENT_SOURCE_DIR}/theme/logo.png")
set(RRCYB_LOGO "${CMAKE_CURRENT_SOURCE_DIR}/theme/logo_cyberspace.png")
configure_file("${CMAKE_CURRENT_SOURCE_DIR}/theme/theme.tex.in" theme.tex @ONLY)
function(add_latex_document LATEX_FILE)
get_filename_component(TARGET_NAME ${LATEX_FILE} NAME_WE)
add_custom_command(OUTPUT ${TARGET_NAME}.aux ${TARGET_NAME}.log ${TARGET_NAME}.pdf
COMMAND ${XELATEX_BIN}
ARGS
-jobname=${TAG_YEAR}_${TARGET_NAME}
-output-directory ${CMAKE_CURRENT_BINARY_DIR}
${LATEX_FILE}
${CMAKE_CURRENT_BINARY_DIR}/version.tex
${CMAKE_CURRENT_BINARY_DIR}/theme.tex
WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}
DEPENDS ${LATEX_FILE})
add_custom_target(${TARGET_NAME} ALL SOURCES ${TARGET_NAME}.pdf)
endfunction()
add_latex_document(firefighting_de.tex)
add_latex_document(amazeing_de.tex)
add_latex_document(jousting_de.tex)
add_latex_document(linefollowing_de.tex)
add_latex_document(sumobot_de.tex)
add_latex_document(cyberspace_de.tex)
add_latex_document(cyberspace_en.tex)