09-04-2015, 04:01 AM
Hello Folks,
I'm currently no good at these Cmake and make stuffs for compilation, I only use VS for compilation. but when I decided to compile windows build for Mgba it seems that VS support is not available right now
so, I'm having a bit of problems in compilation. I'll explain it in steps : (I followed the steps at Github)
step 1:
got all the dependencies as according to the code.
step 2:
I had already did this step on Git-shell.
step 3:
after some research, it seems that this code goes to the directory of the mgba source code, did it properly.
step 4:
This make a new folder called build, It was a success,
step 5:
Enters into build, no problem for now.
step 6:
here's where the problem starts, after entering this virtually nothing happens.
I expected it to produce some message but, it didn't do anything.
step 7:
after step 7, it produced this error message: make: *** No targets specified and no makefile found. Stop.
apparently it was because cmake didn't work properly, any input for help is appreciated.
I'm currently no good at these Cmake and make stuffs for compilation, I only use VS for compilation. but when I decided to compile windows build for Mgba it seems that VS support is not available right now
so, I'm having a bit of problems in compilation. I'll explain it in steps : (I followed the steps at Github)
step 1:
Code:
pacman -Sy mingw-w64-i686-{cmake,ffmpeg,gcc,gdb,imagemagick,libzip,pkg-config,qt5,SDL2}got all the dependencies as according to the code.
step 2:
Code:
git clone https://github.com/mgba-emu/mgba.gitI had already did this step on Git-shell.
step 3:
Code:
cd mgbaafter some research, it seems that this code goes to the directory of the mgba source code, did it properly.
step 4:
Code:
mkdir buildThis make a new folder called build, It was a success,
step 5:
Code:
cd buildEnters into build, no problem for now.

step 6:
Code:
cmake .. -G "MSYS Makefiles"here's where the problem starts, after entering this virtually nothing happens.

I expected it to produce some message but, it didn't do anything.
step 7:
Code:
makeafter step 7, it produced this error message: make: *** No targets specified and no makefile found. Stop.
apparently it was because cmake didn't work properly, any input for help is appreciated.

