In Info.plist of my Xcode project, I see for instance "Executable file" is set to "$(EXECUTABLE_NAME)". I believe that "$(EXECUTABLE_NAME)" is called an environment variable. What I'd like to know is where is that environment variable set. I'd like to see where all the environment variables are set so I can use those values.
Pls. see my reply in Why is the Cocoa Touch Framework target Build setting set to $(CURRENT_PROJECT_VERSION)?
>where is that environment variable set.
IIRC, when viewing the Info tab, if you right-click and select Show Raw Keys/Values, you'll see the actuals used by those macros are
CFBundleShortVersionString
(Version) and CFBundleVersion
(Build).