COMO ELIMINAR LA CREACION DE UN ARCHIVO .EXE AL EJECUTAR MI CODIGO EN C++ #12857
EdrianAdruZ
started this conversation in
General
Replies: 1 comment
-
@EdrianAdruZ You can't suppress the creation of the .exe file -- that is the binary output result that is run. You could potentially modify it's name though in your tasks.json, i.e. "-o",
"${fileDirname}\\${fileBasenameNoExtension}.exe" |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Al crear un archivo con la extencion .c++ y ejecutarlo este se ejecuta y me crea un archivo .exe con el mismo nombre que el archivo.
Por ejemplo:
Si creo un archivo con el nombre : "pruebaUno.c++" me crea otro archivo "pruebaUno.exe"
Me gustaria suprimir la creacion de ese archivo .exe alguien podria ayudarme solo me pasa en archivos .c++
Beta Was this translation helpful? Give feedback.
All reactions