Mentions légales du service
Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
faust
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Admin message
GitLab upgrade completed. Current version is 17.11.3.
Show more breadcrumbs
faust group
faust
Commits
42c16d9e
Commit
42c16d9e
authored
5 years ago
by
hhakim
Browse files
Options
Downloads
Patches
Plain Diff
Generate a zip file of published notebooks to be hosted on gitlab pages with the doc.
parent
a3628944
Branches
Branches containing commit
Tags
2.5.4
Tags containing commit
No related merge requests found
Pipeline
#833916
skipped
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
gen_doc/CMakeLists.txt
+16
-0
16 additions, 0 deletions
gen_doc/CMakeLists.txt
with
16 additions
and
0 deletions
gen_doc/CMakeLists.txt
+
16
−
0
View file @
42c16d9e
...
@@ -36,6 +36,7 @@ if(BUILD_DOCUMENTATION)
...
@@ -36,6 +36,7 @@ if(BUILD_DOCUMENTATION)
file
(
READ mainpage_cpp_inc.md INCLUDE_SPECIFIC_DOC
)
file
(
READ mainpage_cpp_inc.md INCLUDE_SPECIFIC_DOC
)
endif
()
endif
()
configure_file
(
${
FAUST_DOC_SRC_DIR
}
/mainpage.md
${
PROJECT_BINARY_DIR
}
/doc/mainpage.md
)
configure_file
(
${
FAUST_DOC_SRC_DIR
}
/mainpage.md
${
PROJECT_BINARY_DIR
}
/doc/mainpage.md
)
else
()
else
()
message
(
WARNING
"Doxygen not found, cannot generate the documentation"
)
message
(
WARNING
"Doxygen not found, cannot generate the documentation"
)
endif
(
DOXYGEN_FOUND
)
endif
(
DOXYGEN_FOUND
)
...
@@ -94,6 +95,21 @@ if(BUILD_DOCUMENTATION)
...
@@ -94,6 +95,21 @@ if(BUILD_DOCUMENTATION)
configure_file
(
${
FAUST_DOC_SRC_DIR
}
/Faust_factorization.ipynb
${
PROJECT_BINARY_DIR
}
/doc/html/Faust_factorization.ipynb COPYONLY
)
configure_file
(
${
FAUST_DOC_SRC_DIR
}
/Faust_factorization.ipynb
${
PROJECT_BINARY_DIR
}
/doc/html/Faust_factorization.ipynb COPYONLY
)
configure_file
(
${
FAUST_DOC_SRC_DIR
}
/Faust_factorization.html
${
PROJECT_BINARY_DIR
}
/doc/html/Faust_factorization.html COPYONLY
)
configure_file
(
${
FAUST_DOC_SRC_DIR
}
/Faust_factorization.html
${
PROJECT_BINARY_DIR
}
/doc/html/Faust_factorization.html COPYONLY
)
configure_file
(
${
FAUST_SRC_TEST_SRC_PYTHON_DIR
}
/test_svd_rc_vs_err.py
${
PROJECT_BINARY_DIR
}
/doc/html/test_svd_rc_vs_err.py COPYONLY
)
configure_file
(
${
FAUST_SRC_TEST_SRC_PYTHON_DIR
}
/test_svd_rc_vs_err.py
${
PROJECT_BINARY_DIR
}
/doc/html/test_svd_rc_vs_err.py COPYONLY
)
if
(
UNIX
)
file
(
GLOB IPYNB_FILES
"
${
FAUST_DOC_SRC_DIR
}
"
"*.ipynb"
)
#message(STATUS "IPYNB_FILES=${IPYNB_FILES}")
foreach
(
NB IN LISTS IPYNB_FILES
)
#message(STATUS ${NB})
get_filename_component
(
NB
${
NB
}
NAME
)
#message(STATUS ${NB})
if
(
${
NB
}
MATCHES
".*[.]ipynb"
)
set
(
IPYNB_ZIP_ARG
${
IPYNB_ZIP_ARG
}
;
${
NB
}
)
endif
()
endforeach
()
#message(STATUS "IPYNB_ZIP_ARG=${IPYNB_ZIP_ARG}")
# set(IPYNB_ZIP_ARG Faust_creation.ipynb Faust_factorization.ipynb Faust_manipulation.ipynb Use_of_Faust_objects_in_algorithms.ipynb)
add_custom_target
(
zip_notebooks ALL zip pyfaust_notebooks.zip -b
${
PROJECT_BINARY_DIR
}
/doc/html
${
IPYNB_ZIP_ARG
}
WORKING_DIRECTORY
${
PROJECT_BINARY_DIR
}
/doc/html COMMENT
"Archiving the notebook in a zip file"
VERBATIM
)
endif
(
UNIX
)
endif
(
BUILD_DOCUMENTATION
)
endif
(
BUILD_DOCUMENTATION
)
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment