'gameboy-emulator' executable is being created in the wrong path and without proper extension
khskarl opened this issue · 2 comments
khskarl commented
It's being created in the project's root path ./gameboy-emulator
instead of the build path ./build/gameboy-emulator
.
Also the executable lacks the .out
extension, making it harder to ignore it in the .gitignore file.
dhustkoder commented
@khskarl
to build the project, you must follow these steps:
$mkdir build
$cd build
$cmake ..
$make
the build directory is ignored, so theres no need for .out;
khskarl commented
Uh fair enough, my mistake, gonna close the issue then.