mirror of
https://github.com/Relintai/sfw.git
synced 2024-11-08 07:52:09 +01:00
16 lines
380 B
Batchfile
16 lines
380 B
Batchfile
@echo off
|
|
|
|
if not defined DevEnvDir (
|
|
call "C:\Program Files\Microsoft Visual Studio\2022\Community\VC\Auxiliary\Build\vcvarsall.bat" amd64
|
|
)
|
|
|
|
rem debug: /Zi (== -g)
|
|
|
|
cl /EHsc /Zi /c sfw.cpp /Fo:sfw.obj
|
|
cl /EHsc /Zi /c game_scene.cpp /Fo:game_scene.obj
|
|
cl /EHsc /Zi /c main.cpp /Fo:main.obj
|
|
|
|
cl /Zi /EHsc /Fegame-vc.exe ^
|
|
sfw.obj game_scene.obj main.obj ^
|
|
/SUBSYSTEM:CONSOLE
|