GLSLdemo of Orange Book can't build sucessfully

Who can build the GLSLdemo of Orange Book in Visual Studio 2008 sucessfully,
when I build it,
so many link errors:

error LNK2001: unresolved external symbol “public: void __thiscall wxStringData::Free(void)” (?Free@wxStringData@@QAEXXZ)

It sounds like it’s using wxWidgets. So I guess you need to download that, or modify the demo to not need it.

DOWNLOAD LINK:
http://www.3dshaders.com/downloads/glsldemo-src-3.8.zip
the wxWidgets in the demo
BUT It did not work

Make sure your linker can see any import libraries you need (*.lib files).

In Visual Studio you can Tools -> Options -> Projects & Solutions -> VC++ Directories then add paths to such things globally; or you can right-click on your solution project, select properties, then head into Config Properties -> Linker -> Input -> Additional Dependencies and add your stuff there; or you can add a #pragma comment(lib, “mylib”) to your source code; or you can…

ALL way not,using the last method to solve it

This topic was automatically closed 183 days after the last reply. New replies are no longer allowed.