2016-12-22 23:44:54 +00:00
|
|
|
#!/bin/sh
|
2017-12-08 03:52:18 +00:00
|
|
|
|
|
|
|
#This is a build script used for official releases which does not build the UI
|
|
|
|
#Read the makefile and use "make" to build Mesen normally
|
|
|
|
|
2016-12-22 23:44:54 +00:00
|
|
|
MESENPLATFORM=x64 make clean
|
2017-12-08 03:52:18 +00:00
|
|
|
LTO=true MESENPLATFORM=x64 make core -j 16
|
2016-12-22 23:44:54 +00:00
|
|
|
|
|
|
|
MESENPLATFORM=x86 make clean
|
2017-12-08 03:52:18 +00:00
|
|
|
LTO=true MESENPLATFORM=x86 make core -j 16
|
2016-12-22 23:44:54 +00:00
|
|
|
|
|
|
|
cp ./InteropDLL/obj.x64/libMesenCore.x64.dll ./bin
|
|
|
|
cp ./InteropDLL/obj.x86/libMesenCore.x86.dll ./bin
|