mirror of
https://gitlab.com/eql/EQL5.git
synced 2025-12-26 11:52:47 -08:00
set version number to 17.6.1
This commit is contained in:
parent
80de7638fc
commit
1b3ef77336
2 changed files with 5 additions and 4 deletions
|
|
@ -7,7 +7,7 @@
|
|||
#include <QTimer>
|
||||
#include <QStringList>
|
||||
|
||||
const char EQL::version[] = "17.5.1"; // May 2017
|
||||
const char EQL::version[] = "17.6.1"; // June 2017
|
||||
|
||||
extern "C" void ini_EQL(cl_object);
|
||||
|
||||
|
|
|
|||
|
|
@ -13,9 +13,10 @@
|
|||
"special-extensions"))
|
||||
|
||||
(dolist (f *lisp-files*)
|
||||
(let ((file (format nil "lisp/~A" f)))
|
||||
(when (probe-file file)
|
||||
(delete-file (format nil "~A.~A" file #+msvc "obj" #-msvc "o")))
|
||||
(let* ((file (format nil "lisp/~A" f))
|
||||
(file.o (format nil "~A.~A" file #+msvc "obj" #-msvc "o")))
|
||||
(when (probe-file file.o)
|
||||
(delete-file file.o))
|
||||
(compile-file file :system-p t)))
|
||||
|
||||
(c:build-static-library "ini_eql5"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue