The complete source code of IdealIRC
http://www.idealirc.org/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
892 B
31 lines
892 B
5 years ago
|
IdealIRC - Internet Relay Chat client
|
||
|
(c) 2019 Tom-Andre Barstad and contributors.
|
||
|
http://www.idealirc.org/
|
||
|
|
||
|
Licensed under the GNU General Public License version 2.
|
||
|
See LICENSE for more licensing information.
|
||
|
|
||
|
|
||
|
INTRODUCTION
|
||
|
|
||
|
The goal for IdealIRC is to provide a modern compliance of the IRC protocol.
|
||
|
It supports features from IRCv3 that fixes some of the issues of the protocol.
|
||
|
IdealIRC also supports connecting with SSL.
|
||
|
|
||
|
IdealIRC aims to be a simple IRC client with only the bare minimum implemented.
|
||
|
The intention is to extend the client using scripts.
|
||
|
|
||
|
|
||
|
COMPILATION
|
||
|
|
||
|
IdealIRC is written using Qt Creator. You should be able to build the software
|
||
|
purely using Qt Creator's build system.
|
||
|
|
||
|
From command line (Linux)
|
||
|
First navigate to the source folder.
|
||
|
$ mkdir build
|
||
|
$ cd build
|
||
|
$ qmake ..
|
||
|
$ make -j `nproc`
|
||
|
After building is done, the executable "IdealIRC" is present in this directory.
|