Environment:
- Windows 11
- Visual Studio 2022 (17.14)
- CMake 4.3
- SFML 2.6.2 (x64)
- GLEW 2.3.1 (x64)
- GLM 1.0.1
Steps:
- Checkout commit e803ca5 (the "ep 4" version)
- cmake -S . -B build -G "Visual Studio 17 2022" -A x64
- cmake --build build --config Release
Observed issues (all require manual fixes):
-
Missing includes:
- STD_Util.h needs
- Structures_Builder.h needs
- Several files missing /
-
CMakeLists.txt:
- sfml-audio.lib was not linked (needed by Music_Player)
- GLEW hardcoded to Win32 path, breaks x64 build
-
Missing function implementation:
- getFileNamesFromFolder() declared but never implemented
-
Incomplete type / link errors:
- CBlock::getData() declared but not defined (fixed by inline dummy in Nodes.h)
- Block::Data_Holder is forward-declared but never fully defined
- Multiple files fail with "dummy uses undefined class Block::Data_Holder"
-
Additional issues:
- Several struct/class mismatches (C4099 warnings)
- CMake_minimum_required version triggers deprecation warning
This is not a complaint — just a report in case anyone else tries to build this on Windows.
With the fixes above, the project eventually links and runs (though with warnings).
Thanks for sharing the code.
(Finally, debugging this code has left me completely exhausted. I hope the author will update it as soon as possible and provide detailed instructions.Thank you very much.)
Environment:
Steps:
Observed issues (all require manual fixes):
Missing includes:
CMakeLists.txt:
Missing function implementation:
Incomplete type / link errors:
Additional issues:
This is not a complaint — just a report in case anyone else tries to build this on Windows.
With the fixes above, the project eventually links and runs (though with warnings).
Thanks for sharing the code.
(Finally, debugging this code has left me completely exhausted. I hope the author will update it as soon as possible and provide detailed instructions.Thank you very much.)