There was no project named "Install", only thor.xcodeproj
Inside thor.xcodeproj, there should be multiple targets: thor, INSTALL and ZERO_CHECK.
None, nobody mentioned project settings until now. Is this what you meant by linking? I stated several times that I didn't understand the process, please don't skip important steps.
How do I link the project to the thor library?
So you created an empty project, wrote some code involving thrd-party libraries and thought it would work automagically, without configuring anything?
When you use a library, there are generally 3 steps to follow:
- add its header path to the compiler include search paths (if not in a standard path), so that it can resolve your #include statements
- add its libs path to the linker search paths (if not in a standard path), so that it can find the library
- add the library name to the linker input
Some libraries also require to define some macros, depending on which variant you use (for example, SFML requires to define SFML_STATIC if you link the static libraries).
This process is VERY important to understand, you'll have to repeat it everytime you'll use a library.
All this stuff is explained in detail in the SFML tutorials, and I'm pretty sure Thor and SFGUI also have similar explanations. Have you read them?