copy pdb for devbuilds
This commit is contained in:
parent
c68ad7f077
commit
0115d9a32a
@ -10,7 +10,10 @@ author = 'Martin Rotter'
|
|||||||
# -- General configuration ---------------------------------------------------
|
# -- General configuration ---------------------------------------------------
|
||||||
# https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration
|
# https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration
|
||||||
|
|
||||||
extensions = ['myst_parser', 'sphinx.ext.extlinks']
|
extensions = [
|
||||||
|
'myst_parser',
|
||||||
|
'sphinxcontrib.mermaid',
|
||||||
|
'sphinx.ext.extlinks']
|
||||||
templates_path = ['_templates']
|
templates_path = ['_templates']
|
||||||
exclude_patterns = [ 'old_docs' ]
|
exclude_patterns = [ 'old_docs' ]
|
||||||
|
|
||||||
@ -46,3 +49,5 @@ myst_enable_extensions = [
|
|||||||
"substitution",
|
"substitution",
|
||||||
"tasklist",
|
"tasklist",
|
||||||
]
|
]
|
||||||
|
|
||||||
|
myst_heading_anchors = 4
|
@ -18,6 +18,13 @@ RSS Guards documentation!
|
|||||||
features/gui-concepts
|
features/gui-concepts
|
||||||
features/*
|
features/*
|
||||||
|
|
||||||
|
.. toctree::
|
||||||
|
:maxdepth: 1
|
||||||
|
:caption: For Contributors
|
||||||
|
:glob:
|
||||||
|
|
||||||
|
contrib/*
|
||||||
|
|
||||||
Indices and tables
|
Indices and tables
|
||||||
------------------
|
------------------
|
||||||
|
|
||||||
|
@ -1,3 +1,4 @@
|
|||||||
myst_parser
|
myst_parser
|
||||||
linkify-it-py
|
linkify-it-py
|
||||||
|
sphinxcontrib-mermaid
|
||||||
sphinx-rtd-theme
|
sphinx-rtd-theme
|
@ -118,6 +118,11 @@ Copy-Item -Path "$openssl_base_path\bin\libssl*.dll" -Destination ".\app\"
|
|||||||
Copy-Item -Path "$maria_path\lib\libmariadb.dll" -Destination ".\app\"
|
Copy-Item -Path "$maria_path\lib\libmariadb.dll" -Destination ".\app\"
|
||||||
Copy-Item -Path "$qt_sqldrivers_path\plugins\sqldrivers\qsqlmysql.dll" -Destination ".\app\sqldrivers\" -Force
|
Copy-Item -Path "$qt_sqldrivers_path\plugins\sqldrivers\qsqlmysql.dll" -Destination ".\app\sqldrivers\" -Force
|
||||||
|
|
||||||
|
# Copy debug symbols for devbuilds.
|
||||||
|
if ($git_tag -eq "devbuild") {
|
||||||
|
Copy-Item -Path ".\src\librssguard\rssguard.pdb" -Destination ".\app\"
|
||||||
|
}
|
||||||
|
|
||||||
if ($use_webengine -eq "ON") {
|
if ($use_webengine -eq "ON") {
|
||||||
$packagebase = "rssguard-${git_tag}-${git_revision}-win"
|
$packagebase = "rssguard-${git_tag}-${git_revision}-win"
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user