Ok I am new to openframeworks this is my first time using it.
I just tried to compile a few of the example app files.
No matter what example I compile I get the following error.
1>LINK : fatal error LNK1104: cannot open file ‘GLaux.lib’
I followed the instructions on the wiki am i missing something?
Thank you for your time.
Sounds like you are trying to compile the 2005 OF with VS 2008. In order to compile on 2008 you need to remove GLaux.lib from the linked libraries. It should then compile.
Yes I am working with 2008. I am sorry I am new to this compiler. How do I unlink that library? Thank you for your help.
Ok i figured out how to unlink it now I have a new error
Linking…
rtAudioD.lib(RtAudio.obj) : error LNK2019: unresolved external symbol “__declspec(dllimport) public: __thiscall std::_Container_base::~_Container_base(void)” (__imp_??1_Container_base@std@@QAE @XZ) referenced in function “public: __thiscall std::_Vector_val >::~_Vector_val >(void)” (??1?$_Vector_val@HV?$allocator@H@std@@@std @@QAE @XZ)
rtAudioD.lib(RtAudio.obj) : error LNK2019: unresolved external symbol "__declspec(dllimport) public: void __thiscall std::_Container_base::_Orphan_all(void)const " (__imp_?_Orphan_all@_Container_base@std@@QBEXXZ ) referenced in function “protected: void __thiscall std::vector >::_Tidy(void)” (?_Tidy@?$vector@HV?$allocator@H@std@@@std @@IAEXXZ )
rtAudioD.lib(RtAudio.obj) : error LNK2019: unresolved external symbol “__declspec(dllimport) public: __thiscall std::_Container_base::_Container_base(void)” (__imp_??0_Container_base@std@@QAE @XZ) referenced in function “protected: __thiscall std::_Vector_val >::_Vector_val >(class std::allocator)” (??0?$_Vector_val@HV?$allocator@H@std@@@std @@IAE @V?$allocator@H@1@@Z )
bin\graphicsExample_debug.exe : fatal error LNK1120:
3 unresolved externals
zach
December 27, 2008, 11:06pm
#5
I’m sorry that version (0.05) doesn’t work that easily in 2008 (you have to remove glAux and replace rtAudio). here’s a version that does:
http://www.openframeworks.cc/files/vs20-…-008-v0.zip
hope that helps –
take care,
zach
ok that works fine thank you so much