LsCAD Welcome to ...

LSP文件编译成FAS文件

时间:2016-08-02 21:33:03 点击: 【字体: 收藏

(defun c:AT_ToolsCompile (/ FILE)
  (setq file (getfiled "\n选择待编译成FAS文件的LSP" "" "lsp" 2))
  (if file
    (progn
      (command "_vlide")
      (vlisp-compile 'st file)
      )
    )
  (princ (strcat "\n文件保存在:" (vl-filename-directory file)))
  (princ)
  )

 

TAG: lsp fas 编译
相关文章