Hi everyone,
so, I've managed to build MathGL manually, though in a very rough way.
However, I am still trying to understand why using directly CMake does not work.
The build script contains the folowing command:
```
if not exist build_cmake mkdir build_cmake
cmake ^
-D enable-dep-dll=ON -D enable-pdf=ON -D enable-zlib=ON -D enable-png=ON ^
-D enable-python=OFF -D enable-opengl=ON -D enable-glut=ON ^
-D HPDF_ROOT_DIR="C:\Program Files (x86)\libharu" ^
-D GLUT_ROOT_PATH="D:\repos\GLUT" ^
-D BUILD_SHARED_LIBS=ON ^
-S . -B build_cmake --fresh
```
Generation does fine.
Then, going to build with `cmake --build build_cmake --config <CONFIG>`, I have:
```
error LNK2019: reference to external symbol __imp_glutInitWindowSize undefined..
```
which is sign that some .dll s are missing.
But... What is causing such error in CMake config files? I mean, frmo it everythong should be set just fine. While apparently is not the case. Or, am I missing something?
Thanks!