I’d like to use the development version of openFrameworks from GitHub. First, because I need some of the recently added features. Second, because I want to submit a bug and the contribution guidelines ask to doublecheck against the development build to make sure the issue hasn’t already been fixed.
I’ve had no problems at all using the 0.8.4. version of OF in CB 13.12 on Windows 8 64-bit. I have forked/cloned the master branch from github, am even with the most recent commits and have made no changes to the folder structure. When I try to compile an emptyExample, I run into trouble with the OF libs. Every fix I try, leads to more problems, see my attemps below.
ATTEMPT 1 (7 errors)
Error: ofSoundStream.h => error: 'UINT_MAX' was not declared in this scope (x7)
Solution: #include <climits>
ATTEMPT 2 (1 error)
Error: ..\..\..\libs\glew\lib\win_cb\glew32s.lib||No such file or directory
Solution: copy glew32s.lib from libs\glew\lib\vs\ to libs\glew\lib\win_cb\
ATTEMPT 3 (21 errors)
obj\Release\src\main.o:main.cpp:(.text$_ZN17ofBaseSoundOutput8audioOutER13ofSoundBuffer[__ZN17ofBaseSoundOutput8audioOutER13ofSoundBuffer]+0x40)||undefined reference to `ofSoundBuffer::operator[](unsigned int)'|
obj\Release\src\main.o:main.cpp:(.text$_ZN16ofBaseSoundInput7audioInER13ofSoundBuffer[__ZN16ofBaseSoundInput7audioInER13ofSoundBuffer]+0x40)||undefined reference to `ofSoundBuffer::operator[](unsigned int)'|
..\..\..\libs\openFrameworksCompiled\lib\win_cb\openFrameworks.lib(ofAppRunner.o):ofAppRunner.cpp|| undefined reference to `ofMainLoop::ofMainLoop()'|
..\..\..\libs\openFrameworksCompiled\lib\win_cb\openFrameworks.lib(ofAppRunner.o):ofAppRunner.cpp|| undefined reference to `ofMainLoop::run(std::tr1::shared_ptr<ofBaseApp>)'|
..\..\..\libs\openFrameworksCompiled\lib\win_cb\openFrameworks.lib(ofAppRunner.o):ofAppRunner.cpp|| undefined reference to `ofMainLoop::loop()'|
..\..\..\libs\openFrameworksCompiled\lib\win_cb\openFrameworks.lib(ofAppRunner.o):ofAppRunner.cpp|| undefined reference to `ofMainLoop::run(std::tr1::shared_ptr<ofAppBaseWindow>, std::tr1::shared_ptr<ofBaseApp>)'|
..\..\..\libs\openFrameworksCompiled\lib\win_cb\openFrameworks.lib(ofAppRunner.o):ofAppRunner.cpp|| undefined reference to `ofMainLoop::createWindow(ofWindowSettings const&)'|
..\..\..\libs\openFrameworksCompiled\lib\win_cb\openFrameworks.lib(ofAppRunner.o):ofAppRunner.cpp|| undefined reference to `ofMainLoop::createWindow(ofWindowSettings const&)'|
..\..\..\libs\openFrameworksCompiled\lib\win_cb\openFrameworks.lib(ofAppRunner.o):ofAppRunner.cpp|| undefined reference to `ofMainLoop::setEscapeQuitsLoop(bool)'|
..\..\..\libs\openFrameworksCompiled\lib\win_cb\openFrameworks.lib(ofAppRunner.o):ofAppRunner.cpp|| undefined reference to `ofMainLoop::getCurrentWindow()'|
..\..\..\libs\openFrameworksCompiled\lib\win_cb\openFrameworks.lib(ofAppRunner.o):ofAppRunner.cpp|| undefined reference to `ofMainLoop::getCurrentApp()'|
..\..\..\libs\openFrameworksCompiled\lib\win_cb\openFrameworks.lib(ofAppRunner.o):ofAppRunner.cpp|| undefined reference to `ofMainLoop::getCurrentWindow()'|
..\..\..\libs\openFrameworksCompiled\lib\win_cb\openFrameworks.lib(ofAppRunner.o):ofAppRunner.cpp|| undefined reference to `ofMainLoop::shouldClose(int)'|
..\..\..\libs\openFrameworksCompiled\lib\win_cb\openFrameworks.lib(ofAppRunner.o):ofAppRunner.cpp|| undefined reference to `ofMainLoop::getCurrentWindow()'|
..\..\..\libs\openFrameworksCompiled\lib\win_cb\openFrameworks.lib(ofAppRunner.o):ofAppRunner.cpp|| undefined reference to `ofMainLoop::getCurrentWindow()'|
..\..\..\libs\openFrameworksCompiled\lib\win_cb\openFrameworks.lib(ofAppRunner.o):ofAppRunner.cpp|| undefined reference to `ofMainLoop::getCurrentWindow()'|
..\..\..\libs\openFrameworksCompiled\lib\win_cb\openFrameworks.lib(ofAppRunner.o):ofAppRunner.cpp|| undefined reference to `ofMainLoop::getCurrentWindow()'|
..\..\..\libs\openFrameworksCompiled\lib\win_cb\openFrameworks.lib(ofAppRunner.o):ofAppRunner.cpp|| undefined reference to `ofMainLoop::getCurrentWindow()'|
..\..\..\libs\openFrameworksCompiled\lib\win_cb\openFrameworks.lib(ofAppRunner.o):ofAppRunner.cpp|| more undefined references to `ofMainLoop::getCurrentWindow()' follow|
..\..\..\libs\openFrameworksCompiled\lib\win_cb\openFrameworks.lib(ofAppRunner.o):ofAppRunner.cpp|| undefined reference to `ofMainLoop::loop()'|
..\..\..\libs\openFrameworksCompiled\lib\win_cb\openFrameworks.lib(ofAppRunner.o):ofAppRunner.cpp|| undefined reference to `ofMainLoop::events()'|
So I would really appreciate some help with a more structural solution…