mirror of
https://github.com/holub/mame
synced 2025-04-21 16:01:56 +03:00
14 lines
331 B
Batchfile
14 lines
331 B
Batchfile
@echo off
|
|
|
|
set VS=12
|
|
if "%configuration%"=="2015" (set VS=14)
|
|
if "%configuration%"=="2013" (set VS=12)
|
|
|
|
if not defined platform set platform=x64
|
|
if "%platform%" EQU "x64" (set VS=%VS% Win64)
|
|
|
|
cmake -H. -Bbuild -G"Visual Studio %VS%"
|
|
cmake --build build --config Release
|
|
copy build\Release\luv.dll .
|
|
copy build\Release\luajit.exe .
|