a portable and fast pairing-based cryptography library
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
@echo off
|
|
call setvar.bat
|
|
set SRC=%1
|
|
set EXE=%SRC:.cpp=.exe%
|
|
set EXE=%EXE:.c=.exe%
|
|
set EXE=%EXE:test\=bin\%
|
|
set EXE=%EXE:sample\=bin\%
|
|
echo cl %CFLAGS% %1 %2 %3 /Fe:%EXE% /link %LDFLAGS%
|
|
cl %CFLAGS% %1 %2 %3 /Fe:%EXE% /link %LDFLAGS%
|
|
|