This tool allows to run a console program or GUI program with console logging without a console. Or better said, with a hidden console.
Ended
Avoid anoying console poping.
Change the program path with the flags you want in the main.cpp file. Then compile with cmake, and then, you have your new app wrapper with no console.
-
Clone the repo
-
Change the COMMAND_TO_RUN value with the desired app in the "main.cpp".
#define COMMAND_TO_RUN "full/app/path --desired-flags here";- build the wrapper
mkdir build
cd build
cmake .. -G Ninja
cmake --build .- You can use any generator you want, but be careful with the binary path!
- Rename and move the NoConsoleApp.exe binary from the build directory. Ready to use.
This project is licensed under the BSD 3-Clause License - see the LICENSE file for details.
If you encounter any issues or have questions, please file an issue on the GitHub issue tracker.