models/
, src/
, main.cpp
, bin/
, etc). Installed CMake and wrote CMakeLists.txt
file.
Learned about different compilers (Clang, GCC, Visual Studio) and configured Clang because I use Mac, it’s preinstalled, will produce faster & more optimized binaries, and has better diagnostics (error & warning messages).
Spent a loooong time trying to solve a bug wherein the compiler couldn't find OpenCascade header files (specifically gp_Pnt.hxx).
Some approaches I took were: verifying that files existed, manually setting the include and library paths, reconfiguring VSCode IntelliSense, rewriting the .json files, adding fallback include paths, testing manual compilation, etc.
What ended up working was changing the include statement in the main.cpp/
file. A tiny and simple fix that took a long time to get to and was so satisfying in the end.