-
Notifications
You must be signed in to change notification settings - Fork 132
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Doxygen documentation and Sloeber - howto? #1656
Comments
I do not really understand the problem. |
Here is an example: D:\Benutzer\Alexander\Documents\sloeber-workspace\DS18B20_OOP_Test is the root folder of the project. This folder contains the Main file of the project: DS18B20_OOP_Test.ino All the other folders of this root have only the .d or .o files. No sources like .h or .cpp are copied there. The libraries folder of the root folder is empty. What I would like to achieve, is that sloeber copies the .h and .cpp files into the ,now empty, folder D:\Benutzer\Alexander\Documents\sloeber-workspace\DS18B20_OOP_Test\libraries Then I can tell Doxygen the folder D:\Benutzer\Alexander\Documents\sloeber-workspace\DS18B20_OOP_Test as the Project source folder and everything is working fine. Best regards Alexander |
OK I see. |
It is not only the publicly provided code, I write the most part of the code as libraries, that I use then later in my main program. The self written libraries stand just beside the publicly available ones. Well - there are two reasons for copying the source files into the release folder:
Is the really no possibility to copy all source files that had been used for compilation into the realase folder? Or into another folder? Only the sloeber Project knows which files had been compiled for this project. I would like to have an archived copy of the source files being used in the project. And I would like to build a doxygen documentation only for the project but with all files I used in the project. This is why I doubt that I can use another plugin. I would really appreciate that possibility. Best regards Alexander |
Unless you use the private library way in Sloeber you should not have your personal libraries in the libraries folder. For reason 1 I would advice to use the eclipse doxygen integration |
Just use git and tag your releases, this will resolve your problems. |
Allright, mybe copying the files is not the best idea. I am trying to find a solution how the documentation can be automatically setup based on the sloeber project file. Within the .project file are all files that are included from eclipse/sloeber (see the example in the attachment). Is there a possibility to automatically include all files that had been included in the .project file into the doxyfile? |
I found a solution: attached you find a pyton script, that extracts all necessary information from the sloeber / eclipse structure and output the result into a text file. Then I select the paths I want to document and put a "." in front of the line for the current directory, separate them by spaces and copy the so generated line into the doxygen file as "INPUT". End and restart Sloeber and run the doxygen plugin. Nearly half automatic documentation generation. :-) I should mention that I hve created this file using chat GPT. Maybe it would be a nice idea to0 integrate this somewhere in sloeber? Greetings Alexander |
Cool you solved the problem. |
Maybe it would help to integrate my script into sloeber? Am 13.08.2024 um 14:31 schrieb jantje ***@***.***>:
Cool you solved the problem.
To me the eclipse doxygen is the way to go. It probably does something very similar.
As your problem is fixed I'm closing this issue.
—Reply to this email directly, view it on GitHub, or unsubscribe.You are receiving this because you authored the thread.Message ID: ***@***.***>
|
I would only consider to do so if there is a issue on the eclipse doxygen plugin that the maintainers do not want to fix and that is making this script a workaround. |
There might be a misunderstanding: I use the Eclipse Doxygen plugin. The only question is which files/paths to be included. The only purpose for the script is to collect all paths/files that have been used during a compile respectively have been set in the project. What you use this information for is up to the user. You can copy the files, you can keep that as a documentation, or you can use it for doxygen. It is more „tell me which files have been included“…Greetings. Am 13.08.2024 um 15:52 schrieb jantje ***@***.***>:
I would only consider to do so if there is a issue on the eclipse doxygen plugin that the maintainers do not want to fix and that is making this script a workaround.
—Reply to this email directly, view it on GitHub, or unsubscribe.You are receiving this because you authored the thread.Message ID: ***@***.***>
|
There was a misunderstanding. |
Hi,
I see Doxygen as a very good possibility for code documentation. I have sloeber running, I have Doxygen running.
Doxygen requires a folder of the project where all Source Code of the project can be found.
When I look in The project Release folder, there are all used libraries but of course they are .o object files. Is there a possibility that Sloeber copies not only the object files but also the source files into the Release folder, or even better, into a Release/Sourcecode folder? The main programs *.ino should be included as well.
In this case it would be sufficient to set doxygen to this source code folder. *.o *.p files are obviously ignored by doxygen.
Best regards
Alexander
The text was updated successfully, but these errors were encountered: