-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathbuild-plugin64.cmd
More file actions
20 lines (17 loc) · 828 Bytes
/
build-plugin64.cmd
File metadata and controls
20 lines (17 loc) · 828 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
@echo off
REM +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
REM + Example build script for Windows +
REM + +
REM + Change the following `set' statements to adapt them to your +
REM + local settings: +
REM +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
REM The LispWorks executable
set lispworks="C:\Program Files\LispWorks\lispworks-7-0-0-x64-windows.exe"
REM +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
REM + Don't change anything below this point. +
REM +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
%lispworks% -build deliver.lisp FMPLisp
if errorlevel 1 (
echo Couldn't build DLL.
pause
)