shiv
shiv

Reputation: 9

how to Find the Search Paths\Header Search Paths setting in xcode 3.2

all i am very to iphone development and i am doing one tutorial which is related to the XML parser from the link http://www.raywenderlich.com/725/how-to-read-and-write-xml-documents-with-gdataxml .i searched everywhere but not got .i have one query if anyone can help me: i am not able to find this:

1.Find the Search Paths\Header Search Paths setting and add /usr/include/libxml2 to the list. 2.find the Linking\Other Linker Flags section and add -lxml2 to the list.

thanks in advance to everyone

Upvotes: 0

Views: 1236

Answers (1)

Raj Subbiah
Raj Subbiah

Reputation: 1292

1.Open the xcode.

2.Select the Project tab from the menu bar.

3.Select the Edit Project Settings.

4.Select the Build tab and search the Header Search paths and set the /usr/include/libxml2.

5.Again search the Other Linker Flags and set the -lxml2.

Upvotes: 2

Related Questions