CEXT-Dan / DOSLib

LISP Library for CAD Applications (Port to Bricscad Lite)

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

DOSLib: LISP Library for CAD Applications

This repository contains the source code to DOSLib, a library of LISP-callable functions that provide functionality not available in CAD-base LISP interpreters, such as those included with AutoCAD and BricsCAD.

Prerequisites

The following tools are required to build DOSLib:

*When installing Visual Studio 2019, make sure to install the Visual Studio 2017 (v141) C++ x64/x86 build tools and libraries, including ATL and MFC.

Note, Visual Studio 2022 can also be used. Just make sure to install the Visual Studio 2019 (v142) and Visual Studio 2017 (v141) C++ x64/x86 build tools and libraries, including ATL and MFC.

Note, to build DOSLib for version of AutoCAD, BricsCAD and/or ZWCAD earlier than what is listed above may also require an earlier version of Visual Studio. Check the documentation that comes with each of these SDK for their Visual Studio requirement.

The DOSLib build solution looks for ObjectARX, BRXSDK and ZRXSDK installations in this folder structure:

\acad
  \arx
    \19    - ObjectARX for AutoCAD 2013
    \20    - ObjectARX for AutoCAD 2015 
    \21    - ObjectARX for AutoCAD 2017 
    \22    - ObjectARX for AutoCAD 2018
    \23    - ObjectARX for AutoCAD 2019
    \24    - ObjectARX for AutoCAD 2021
  \brx
    \13    - BRXSDK for BricsCAD Pro V13 
    \14    - BRXSDK for BricsCAD Pro V14
    \15    - BRXSDK for BricsCAD Pro V15 
    \16    - BRXSDK for BricsCAD Pro V16 
    \17    - BRXSDK for BricsCAD Pro V17 
    \18    - BRXSDK for BricsCAD Pro V18 
    \19    - BRXSDK for BricsCAD Pro V19 
    \20    - BRXSDK for BricsCAD Pro V20
    \21    - BRXSDK for BricsCAD Pro V21
    \22    - BRXSDK for BricsCAD Pro V22
    \23    - BRXSDK for BricsCAD Pro V23
\zwcad
  \zrx
    \20    - ZRXSDK for ZWCAD 2018/2019/2020
    \21    - ZRXSDK for ZWCAD 2021

Compiling

  1. Clone the repository. At a command prompt, enter the following command:
git clone https://github.com/dalefugier/doslib
  1. Open the DOSLib.sln solution file, found in the doslib\source folder, in Visual Studio.
  2. Select either the Release_ARX24, Release_BRX23 or Release_ZRX21 solution configuration.
  3. Press F7, or click Build > Build Solution to build the solution.

Note, you can target DOSLib for other versions of AutoCAD, BricsCAD or ZWCAD as long as:

  1. The correct ObjectARX, BRXSDK or ZRXSDK is installed in above mentioned location.
  2. The correct Visual Studio platform toolset is installed.

More Information

DOSLib home page

License

Code licensed under the MIT License.

About

LISP Library for CAD Applications (Port to Bricscad Lite)

License:Other


Languages

Language:C++ 99.5%Language:C 0.5%