From 87aaacdb420341bf3619922332d58b95249971bc Mon Sep 17 00:00:00 2001 From: Florent Le Coz Date: Sun, 3 Nov 2013 00:22:32 +0100 Subject: Rename libirc and libxmpp to irc and xmpp --- CMakeLists.txt | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) (limited to 'CMakeLists.txt') diff --git a/CMakeLists.txt b/CMakeLists.txt index 163e361..9f1eef6 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -20,20 +20,20 @@ add_library(network STATIC ${source_network}) # ## irclib # -file(GLOB source_libirc - src/libirc/*.[hc]pp) -add_library(libirc STATIC ${source_libirc}) -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_libxmpp - src/libxmpp/*.[hc]pp) -add_library(libxmpp STATIC ${source_libxmpp}) -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 -- cgit v1.2.3