IRC client framework (wrapper around libircclient library).
Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.

README_libircclient 881B

123456789101112131415161718
  1. Before you can add IRCClient to your project, you must build libircclient and add it to IRCClient.
  2. (these instructions apply to Xcode 7.1.1, build 7B1005)
  3. 0. Download the libircclient source
  4. 1. Create a folder called “libircclient” in the IRCClient project folder
  5. 2. Build libircclient, according the instructions provided
  6. 3. Place the library (libircclient.a) and the headers (libircclient.h, libirc_errors.h, libirc_events.h, libirc_options.h, and libirc_rfcnumeric.h) into the libircclient folder you created
  7. 4. Open IRCClient.xcodeproj in Xcode and use “File -> Add Files…” to add the libircclient folder to the project
  8. 5. Configure the build phases for the IRCClient framework target by adding libircclient.a to the “Link Binary With Libraries” build phase
  9. 6. Close the project
  10. Now you can proceed with step 1 of the instructions in the main README file.