The static-library tag has no wiki summary.
2
votes
1answer
180 views
How to link OpenGL with my own static library?
My game project is split up into three parts:
Core (lib)
Editor (exe)
Game (exe)
I'm using OpenGL in both my Core and Game parts, but as soon as I try to call an OpenGL function in my Core library ...
3
votes
1answer
253 views
Variables in static library are never initialized. Why?
I have a bunch of variables that should be initialized then my game launches, but must of them are never initialized.
Here is an example of the code:
MyClass.h
class MyClass : public BaseObject {
...