mirror of
https://github.com/snowie2000/mactype.git
synced 2025-01-05 10:17:02 +08:00
07a1eee62c
Dependency not included. Deps: EasyHook, FreeType
20 lines
202 B
Batchfile
20 lines
202 B
Batchfile
@echo off
|
|
|
|
setlocal
|
|
|
|
set INCLUDE=..\..\..\freetype2\include;%INCLUDE%
|
|
set LIB=..\..;%LIB%
|
|
|
|
:go
|
|
nmake -f Makefile.vc2005 %*
|
|
if errorlevel 1 goto err
|
|
goto end
|
|
|
|
:err
|
|
pause
|
|
goto go
|
|
|
|
:end
|
|
endlocal
|
|
rem pause
|