hex007 / freej2me

A free J2ME emulator with libretro, awt and sdl2 frontends.
Other
499 stars 78 forks source link

Supporting Windows SDL #178

Open ohayoyogi opened 1 year ago

ohayoyogi commented 1 year ago

Hi, I'm Windows user. I wrote CMakeLists.txt to support Windows SDL.

Build command is below.

cd freej2me/src/sdl2
mkdir build
cd build
cmake .. -DCMAKE_INSTALL_PREFIX=%USERPROFILE%\freej2me -G "Visual Studio 17 2022"
cmake --build . --config RELEASE --target INSTALL 

Could you review this?