khskarl/kgb-emulator

'gameboy-emulator' executable is being created in the wrong path and without proper extension

khskarl opened this issue · 2 comments

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.

@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;

Uh fair enough, my mistake, gonna close the issue then.