Skip to content

Commit 2d94741

Browse files
author
Javier Gil Aviles
committed
Refs #22788: Apply second review changes
Signed-off-by: Javier Gil Aviles <javiergil@eprosima.com>
1 parent 2583190 commit 2d94741

8 files changed

Lines changed: 172 additions & 303 deletions

File tree

.github/workflows/reusable-ubuntu-ci.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -199,5 +199,3 @@ jobs:
199199

200200
- name: Python Linter
201201
uses: eProsima/eProsima-CI/ubuntu/python_linter@v0
202-
with:
203-
file_extensions_grep_args: "-e '^(?!ddsenabler_docs/).+\\.py$'"

.gitignore

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,10 +56,8 @@ log/
5656
.vscode
5757

5858
### Documentation ###
59-
ddsenabler_docs/docs/rst/_static/css/online_eprosima_rtd_theme.css
6059
ddsenabler_docs/docs/_static/css/eprosima-furo.css
6160
ddsenabler_docs/docs/_static/eprosima-logo-white.png
62-
ddsenabler_docs/docs/_static/dds-enabler-logo.png
6361
ddsenabler_docs/docs/_templates/sidebar/commercial-support.html
6462

6563
### Python ###

README.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,8 +48,6 @@ Leverage [OMG DDS-XTypes 1.3](https://www.omg.org/spec/DDS-XTypes/1.3) and Fast
4848
- **Bidirectional FIWARE Integration**
4949
Routes DDS samples to NGSI-LD Context Brokers and injects context updates back into DDS topics.
5050

51-
![DDS Enabler Architecture](docs/rst/figures/ddsenabler_architecture.png)
52-
5351
## Commercial support
5452

5553
Looking for commercial support? Write us to info@eprosima.com

ddsenabler/CMakeLists.txt

Lines changed: 0 additions & 51 deletions
Original file line numberDiff line numberDiff line change
@@ -95,54 +95,3 @@ endif()
9595
# Install package
9696
eprosima_packaging()
9797

98-
###############################################################################
99-
# Documentation
100-
###############################################################################
101-
# Add an option to toggle the generation of the API documentation.
102-
option(DDSENABLER_DOCS "Use doxygen to create product documentation" OFF)
103-
104-
if(DDSENABLER_DOCS)
105-
find_package(Doxygen)
106-
if(NOT DOXYGEN_FOUND)
107-
message(FATAL_ERROR "doxygen is needed to build the documentation. Please install it correctly")
108-
endif()
109-
if(UNIX)
110-
find_program(DOXYFILE_MAKE make)
111-
if(DOXYFILE_MAKE)
112-
message(STATUS "Found Make: ${DOXYFILE_MAKE}")
113-
else()
114-
message(FATAL_ERROR "make is needed to build the documentation. Please install it correctly")
115-
endif()
116-
elseif(WIN32)
117-
set(DOXYFILE_MAKE make.bat)
118-
endif()
119-
120-
# Target to create documentation directories
121-
add_custom_target(docsdirs
122-
COMMAND ${CMAKE_COMMAND} -E make_directory ${PROJECT_BINARY_DIR}/docs
123-
COMMENT "Creating documentation directory" VERBATIM)
124-
125-
### Doxygen ########################3
126-
# Configure the template doxyfile for or specific project
127-
configure_file(${CMAKE_SOURCE_DIR}/Doxyfile.in
128-
${PROJECT_BINARY_DIR}/Doxyfile
129-
@ONLY IMMEDIATE)
130-
# Add custom target to run doxygen whenever the project is build
131-
add_custom_target(doxygen
132-
COMMAND "${DOXYGEN_EXECUTABLE}" "${PROJECT_BINARY_DIR}/Doxyfile"
133-
SOURCES "${PROJECT_BINARY_DIR}/Doxyfile"
134-
COMMENT "Generating API documentation with doxygen" VERBATIM)
135-
136-
add_dependencies(doxygen docsdirs)
137-
138-
add_custom_target(docs ALL
139-
COMMENT "Generated project documentation" VERBATIM)
140-
141-
add_dependencies(docs doxygen)
142-
143-
install(DIRECTORY ${PROJECT_BINARY_DIR}/docs/api_reference
144-
DESTINATION share/docs
145-
COMPONENT documentation
146-
)
147-
endif()
148-

ddsenabler_docs/docs/_static/css/online_eprosima_rtd_theme.css

Lines changed: 0 additions & 86 deletions
This file was deleted.
-21.5 KB
Binary file not shown.

0 commit comments

Comments
 (0)