Where is the executable folder after compiling using cargo
command for the example game ?
#9224
Answered
by
nicopap
AnotherCoder1
asked this question in
Q&A
-
after typing But where is the executable file or .exe file located? I am on Windows by the way. |
Beta Was this translation helpful? Give feedback.
Answered by
nicopap
Jul 21, 2023
Replies: 1 comment 1 reply
-
When you do
This should show the path to the executable cargo is running. It's the last row in the long column of text that goes "Compiling …" (in green) after you run the command but before the game runs. |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
AnotherCoder1
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
When you do
cargo run --example
it should print in the terminal something along the lines ofThis should show the path to the executable cargo is running.
It's the last row in the long column of text that goes "Compiling …" (in green) after you run the command but before the game runs.