You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is your feature request related to a problem or challenge? Please describe what you are trying to do.
Presently, prost generates code into the target/ folder, which causes IDEs such as CLion to not be able to go to definition, or provide any auto-complete for this code, making it hard to work with.
Describe the solution you'd like
I'd like to move the generated code under the src/ folder, but .gitignore it.
Describe alternatives you've considered
Leave as is
Check in the generated code
The text was updated successfully, but these errors were encountered:
FWIW I use CLion with generated code without issue, the trick is to run the build once, and then "Refresh Cargo Projects". You need to run the build first in order to actually generate the code
Is your feature request related to a problem or challenge? Please describe what you are trying to do.
Presently, prost generates code into the
target/
folder, which causes IDEs such as CLion to not be able togo to definition
, or provide any auto-complete for this code, making it hard to work with.Describe the solution you'd like
I'd like to move the generated code under the
src/
folder, but.gitignore
it.Describe alternatives you've considered
The text was updated successfully, but these errors were encountered: