Skip to content

Commit

Permalink
Fix Python API generation (#647)
Browse files Browse the repository at this point in the history
Signed-off-by: Ricardo González Moreno <ricardo@richiware.dev>
  • Loading branch information
richiware committed Jan 17, 2024
1 parent 6a757c0 commit 5de9f3c
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -271,6 +271,10 @@ def configure_doxyfile(
os.makedirs(os.path.dirname(output_dir), exist_ok=True)
os.makedirs(os.path.dirname(doxygen_html), exist_ok=True)

os.makedirs("{}/include/fastcdr".format(fastdds_repo_name), exist_ok=True)
with open("{}/include/fastcdr/config.h".format(fastdds_repo_name), "w") as config_file:
config_file.write("#define FASTCDR_VERSION_MAJOR 1")

# Configure Doxyfile
configure_doxyfile(
doxyfile_in,
Expand Down

0 comments on commit 5de9f3c

Please sign in to comment.