openscad-step-reader
openscad-step-reader copied to clipboard
Proof-of-concept for OpenSCAD step file importing
Which is the current version available on archlinux. Also add some missing includes and std:: qualification.
The original Makefile used LDFLAGS to specify link linbaries. This caused the libraries to be specified BEFORE the object files referencing them, causing link failures. By using LDLIBS, all the...
kuchiriel@ATIVAS004015:~/openscad-step-reader$ make all g++ -std=c++11 -g -O0 -I/usr/include/opencascade -c -o openscad-step-reader.o openscad-step-reader.cpp openscad-step-reader.cpp:19:10: fatal error: STEPControl_Reader.hxx: No such file or directory 19 | #include | ^~~~~~~~~~~~~~~~~~~~~~~~ compilation terminated. make: ***...