Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
CTA-LAPP
PHOENIX_LIBS
ParserGenerator
Commits
49e62524
Commit
49e62524
authored
Dec 22, 2020
by
Pierre Aubert
Browse files
Update doc latex
parent
652a1983
Pipeline
#97081
failed with stages
in 7 minutes and 26 seconds
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
12 additions
and
2 deletions
+12
-2
.gitlab-ci.yml
.gitlab-ci.yml
+1
-1
doc/platex/CMakeLists.txt
doc/platex/CMakeLists.txt
+11
-1
No files found.
.gitlab-ci.yml
View file @
49e62524
...
...
@@ -82,7 +82,7 @@ Doc:
-DDOC_MODE=yes
-
make all
-
make install
-
make doc
create_platex_doc
-
make doc
-
scp -r doc/platex/* ../public
-
scp -r doc/html/* ../public/html
artifacts
:
...
...
doc/platex/CMakeLists.txt
View file @
49e62524
...
...
@@ -5,6 +5,16 @@ cmake_minimum_required(VERSION 3.0)
file
(
GLOB listTex
"
${
CMAKE_CURRENT_SOURCE_DIR
}
/*.tex"
)
set
(
MAIN_TEX
${
CMAKE_CURRENT_SOURCE_DIR
}
/parserGenerator.tex
)
phoenix_calltex2html
(
create_platex_doc
${
MAIN_TEX
}
${
listTex
}
)
# phoenix_calltex2html(create_platex_doc ${MAIN_TEX} ${listTex})
add_custom_command
(
OUTPUT
${
CMAKE_CURRENT_BINARY_DIR
}
/index.html
COMMENT
"latex documentation generation"
COMMAND
${
PHOENIX_TEX_2_HTML_EXECUTABLE
}
-i
${
CMAKE_CURRENT_SOURCE_DIR
}
/parserGenerator.tex -p
${
CMAKE_INSTALL_PREFIX
}
DEPENDS
${
listTex
}
WORKING_DIRECTORY
${
CMAKE_CURRENT_BINARY_DIR
}
)
add_custom_target
(
create_platex_doc DEPENDS
${
CMAKE_CURRENT_BINARY_DIR
}
/index.html
)
add_dependencies
(
doc create_platex_doc
)
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment