6 lines
123 B
Batchfile
6 lines
123 B
Batchfile
|
@echo off
|
||
|
set PLAT="x86"
|
||
|
IF "%Platform%"=="x64" set PLAT="x64"
|
||
|
|
||
|
cl.exe /GS- /nologo /c screenshot.c /Foscreenshot.%PLAT%.o
|