diff --git a/README.md b/README.md index cea6d7f..c22fa6d 100644 --- a/README.md +++ b/README.md @@ -24,3 +24,9 @@ or drag to your application bar. (Do frequently, as I add new features constantly) - If you change the director of this install run make.bat + +*** frame.bat *** + +- If you would like to run the CLOG Builder in a native window after setup.bat + or update.bat you can run frame.bat and the builder.exe will not use the + browser. However clogframe.exe must be in same directory. diff --git a/clogframe.exe b/clogframe.exe new file mode 100644 index 0000000..a2aaed7 Binary files /dev/null and b/clogframe.exe differ diff --git a/frame.bat b/frame.bat new file mode 100644 index 0000000..aadc0a8 --- /dev/null +++ b/frame.bat @@ -0,0 +1 @@ +sbcl\sbcl.exe --no-userinit --no-sysinit --eval "(load \"ql.lisp\")" --eval "(load \"quicklisp/setup.lisp\")" --eval "(push #P\"./common-lisp\" ql:*local-project-directories*)" --eval "(ql:quickload :cl-isaac)" --eval "(ql:quickload :clog)" --eval "(ql:quickload :clog/tools)" --eval "(sb-ext:save-lisp-and-die #P\"builder.exe\" :toplevel (lambda () (clog-tools:clog-builder :port 0 :app t :start-browser nil :clogframe t)(loop (sleep 10))) :executable t)"