From 8a75dab45381a9e4e1c54e92b83a90ee992ee696 Mon Sep 17 00:00:00 2001 From: Tanner Collin Date: Tue, 17 Feb 2026 17:28:32 -0700 Subject: [PATCH] Add README with build instructions --- README.md | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 README.md diff --git a/README.md b/README.md new file mode 100644 index 0000000..6685b3d --- /dev/null +++ b/README.md @@ -0,0 +1,19 @@ +# Unnamed CAD Software + +## Development + +### Building + +On Debian 12: + +```bash +$ sudo apt install cmake qt6-base-dev qt6-svg-dev libtbb-dev +$ sudo apt install libocct-foundation-dev libocct-modeling-data-dev libocct-modeling-algorithms-dev libocct-visualization-dev + +$ mkdir build +$ cd build/ +$ cmake .. +$ make + +$ ./OpenCAD +```