Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
biboumi
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
88
Issues
88
List
Boards
Labels
Service Desk
Milestones
Merge Requests
7
Merge Requests
7
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Packages & Registries
Packages & Registries
Container Registry
Analytics
Analytics
CI / CD
Repository
Value Stream
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
louiz’
biboumi
Commits
87aaacdb
Commit
87aaacdb
authored
Nov 03, 2013
by
louiz’
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Rename libirc and libxmpp to irc and xmpp
parent
e332d7a2
Changes
6
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
15 additions
and
15 deletions
+15
-15
CMakeLists.txt
CMakeLists.txt
+10
-10
src/irc/irc_client.cpp
src/irc/irc_client.cpp
+2
-2
src/irc/irc_client.hpp
src/irc/irc_client.hpp
+1
-1
src/irc/irc_message.cpp
src/irc/irc_message.cpp
+1
-1
src/irc/irc_message.hpp
src/irc/irc_message.hpp
+0
-0
src/main.cpp
src/main.cpp
+1
-1
No files found.
CMakeLists.txt
View file @
87aaacdb
...
...
@@ -20,20 +20,20 @@ add_library(network STATIC ${source_network})
#
## irclib
#
file
(
GLOB source_
lib
irc
src/
lib
irc/*.[hc]pp
)
add_library
(
libirc STATIC
${
source_lib
irc
}
)
target_link_libraries
(
libirc network
)
file
(
GLOB source_irc
src/irc/*.[hc]pp
)
add_library
(
irc STATIC
${
source_
irc
}
)
target_link_libraries
(
irc network
${
CRYPTO++_LIBRARIES
}
)
#
## xmpplib
#
file
(
GLOB source_
lib
xmpp
src/
lib
xmpp/*.[hc]pp
)
add_library
(
libxmpp STATIC
${
source_lib
xmpp
}
)
target_link_libraries
(
libxmpp network
)
file
(
GLOB source_xmpp
src/xmpp/*.[hc]pp
)
add_library
(
xmpp STATIC
${
source_
xmpp
}
)
target_link_libraries
(
xmpp network
)
add_executable
(
${
PROJECT_NAME
}
src/main.cpp
)
target_link_libraries
(
${
PROJECT_NAME
}
libxmpp
libirc
)
\ No newline at end of file
xmpp
irc
)
\ No newline at end of file
src/
lib
irc/irc_client.cpp
→
src/irc/irc_client.cpp
View file @
87aaacdb
#include <
lib
irc/irc_client.hpp>
#include <
lib
irc/irc_message.hpp>
#include <irc/irc_client.hpp>
#include <irc/irc_message.hpp>
#include <iostream>
#include <stdexcept>
...
...
src/
lib
irc/irc_client.hpp
→
src/irc/irc_client.hpp
View file @
87aaacdb
#ifndef IRC_CLIENT_INCLUDED
# define IRC_CLIENT_INCLUDED
#include <
lib
irc/irc_message.hpp>
#include <irc/irc_message.hpp>
#include <network/socket_handler.hpp>
...
...
src/
lib
irc/irc_message.cpp
→
src/irc/irc_message.cpp
View file @
87aaacdb
#include <
lib
irc/irc_message.hpp>
#include <irc/irc_message.hpp>
#include <iostream>
IrcMessage
::
IrcMessage
(
std
::
string
&&
line
)
...
...
src/
lib
irc/irc_message.hpp
→
src/irc/irc_message.hpp
View file @
87aaacdb
File moved
src/main.cpp
View file @
87aaacdb
#include <
lib
irc/irc_client.hpp>
#include <irc/irc_client.hpp>
#include <network/poller.hpp>
int
main
()
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment