I can set my XCode project path for my Product to be relative and from that access other project relative paths. However, if I would like to install my Product to /usr/local/bin and still access project relative paths how do I do it?
My project layout is:
project/
-- Makefile
-- obj/
---- target .o files
-- python/
---- .py files
-- src/
---- C/C++ files incl headers
I want my Product to be at /usr/local/bin and also access my python folder.
Thanks.