Hi, I,m new to Xcode and have never been good at stitching up dependencies/build configurations. I’ve downloaded the colladaViewerInOF and tried to make it and am getting a ton of red files which I’m guessing means they’re just not there or they are and the dependcies aren’t properly set.
actually, it sounds to me like you’re building against the 10.4 sdk when it’s not installed on your system (are you on 10.6?)
try setting the SDK to 10.5: find the drop down menu that currently says ‘Base SDK’ or ‘Mac OSX 10.4 SDK’ (probably in the top left of your Xcode project window) and change it to ‘Mac OSX 10.5 SDK’.
Undefined symbols:
“ofScale(float, float, float)”, referenced from:
testApp::draw() in testApp.o
“ofGetFrameNum()”, referenced from:
testApp::mouseMoved(int, int)in testApp.o
“ofDrawBitmapString(std::basic_string<char, std::char_traits, std::allocator >, float, float)”, referenced from:
testApp::draw() in testApp.o
“ofBackground(int, int, int)”, referenced from:
testApp::setup() in testApp.o
“ofSetVerticalSync(bool)”, referenced from:
testApp::setup() in testApp.o
“ofSetupOpenGL(ofAppBaseWindow*, int, int, int)”, referenced from:
_main in main.o
“ofAppGlutWindow::setGlutDisplayString(std::basic_string<char, std::char_traits, std::allocator >)”, referenced from:
_main in main.o
“ofGetHeight()”, referenced from:
testApp::setup() in testApp.o
testApp::draw() in testApp.o
testApp::draw() in testApp.o
“vtable for ofAppGlutWindow”, referenced from:
__ZTV15ofAppGlutWindow$non_lazy_ptr in main.o
“ofRunApp(ofBaseApp*)”, referenced from:
_main in main.o
“ofAppGlutWindow::ofAppGlutWindow()”, referenced from:
_main in main.o
“ofTranslate(float, float, float)”, referenced from:
testApp::draw() in testApp.o
“ofGetWidth()”, referenced from:
testApp::setup() in testApp.o
testApp::draw() in testApp.o
“ofSetColor(int, int, int)”, referenced from:
testApp::draw() in testApp.o
ld: symbol(s) not found
collect2: ld returned 1 exit status
So i’m guessing it can’t find the framework where these functions are, but aren’t they in openFrameworksDebug.a which is part of the project ? So why can’t the program find them ?