generated from niccolozanotti/cmake-tex-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
CMakeLists.txt
88 lines (78 loc) · 2.84 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
76
77
78
79
80
81
82
83
84
85
86
cmake_minimum_required(VERSION 3.20)
set(PDFLATEX_COMPILER xelatex) # Use XeLaTeX for compilation
set(FONT_DIR fonts)
project(CV-RESUME NONE)
include(UseLATEX.cmake)
add_latex_document(cv.tex TARGET_NAME cv
INPUTS cv/education.tex
cv/skills.tex
cv/experience.tex
cv/extracurricular.tex
cv/honors.tex
cv/presentation.tex
cv/writing.tex
cv/committees.tex
awesome-cv.cls
${FONT_DIR}/FontAwesome.ttf
${FONT_DIR}/Roboto-Regular.ttf
${FONT_DIR}/Roboto-Italic.ttf
${FONT_DIR}/Roboto-Light.ttf
${FONT_DIR}/Roboto-LightItalic.ttf
${FONT_DIR}/Roboto-Thin.ttf
${FONT_DIR}/Roboto-ThinItalic.ttf
${FONT_DIR}/Roboto-Bold.ttf
${FONT_DIR}/Roboto-BoldItalic.ttf
${FONT_DIR}/Roboto-Medium.ttf
${FONT_DIR}/Roboto-MediumItalic.ttf
# BIBFILES bibliography.bib
USE_BIBLATEX
IMAGE_DIRS assets/images
# USE_INDEX
EXCLUDE_FROM_ALL
)
add_latex_document(resume.tex TARGET_NAME resume
INPUTS resume/education.tex
resume/experience.tex
resume/extracurricular.tex
resume/summary.tex
resume/honors.tex
resume/presentation.tex
resume/writing.tex
resume/committees.tex
awesome-cv.cls
${FONT_DIR}/FontAwesome.ttf
${FONT_DIR}/Roboto-Regular.ttf
${FONT_DIR}/Roboto-Italic.ttf
${FONT_DIR}/Roboto-Light.ttf
${FONT_DIR}/Roboto-LightItalic.ttf
${FONT_DIR}/Roboto-Thin.ttf
${FONT_DIR}/Roboto-ThinItalic.ttf
${FONT_DIR}/Roboto-Bold.ttf
${FONT_DIR}/Roboto-BoldItalic.ttf
${FONT_DIR}/Roboto-Medium.ttf
${FONT_DIR}/Roboto-MediumItalic.ttf
# BIBFILES bibliography.bib
USE_BIBLATEX
IMAGE_DIRS assets/images
# USE_INDEX
EXCLUDE_FROM_ALL
)
add_latex_document(coverletter.tex TARGET_NAME coverletter
INPUTS awesome-cv.cls
${FONT_DIR}/FontAwesome.ttf
${FONT_DIR}/Roboto-Regular.ttf
${FONT_DIR}/Roboto-Italic.ttf
${FONT_DIR}/Roboto-Light.ttf
${FONT_DIR}/Roboto-LightItalic.ttf
${FONT_DIR}/Roboto-Thin.ttf
${FONT_DIR}/Roboto-ThinItalic.ttf
${FONT_DIR}/Roboto-Bold.ttf
${FONT_DIR}/Roboto-BoldItalic.ttf
${FONT_DIR}/Roboto-Medium.ttf
${FONT_DIR}/Roboto-MediumItalic.ttf
# BIBFILES bibliography.bib
USE_BIBLATEX
IMAGE_DIRS assets/images
# USE_INDEX
EXCLUDE_FROM_ALL
)