src/CMakeLists.txt
branchnew-transport
changeset 156 6534a4ac957b
parent 155 c59d3eaff0fb
child 157 1e5674d0eec4
equal deleted inserted replaced
155:c59d3eaff0fb 156:6534a4ac957b
     9 # add our include path
     9 # add our include path
    10 include_directories (${LibEvent_INCLUDE_DIRS} ${GnuTLS_INCLUDE_DIRS} ${Evsql_INCLUDE_DIRS} ${Lua51_INCLUDE_DIRS} ${PCRE_INCLUDE_DIRS})
    10 include_directories (${LibEvent_INCLUDE_DIRS} ${GnuTLS_INCLUDE_DIRS} ${Evsql_INCLUDE_DIRS} ${Lua51_INCLUDE_DIRS} ${PCRE_INCLUDE_DIRS})
    11 
    11 
    12 # define our source code modules
    12 # define our source code modules
    13 set (CORE_SOURCES error.c log.c str.c)
    13 set (CORE_SOURCES error.c log.c str.c)
    14 set (IO_SOURCES transport.c transport_fd.c sock.c sock_tcp.c sock_gnutls.c)
    14 set (IO_SOURCES transport.c transport_fd.c sock.c sock_tcp.c sock_gnutls.c line_proto.c)
    15 set (IRC_SOURCES irc_line.c irc_conn.c irc_net.c irc_chan.c chain.c irc_cmd.c irc_proto.c irc_client.c irc_user.c irc_queue.c irc_net_connect.c)
    15 set (IRC_SOURCES irc_line.c irc_conn.c irc_net.c irc_chan.c chain.c irc_cmd.c irc_proto.c irc_client.c irc_user.c irc_queue.c irc_net_connect.c)
    16 set (LUA_SOURCES nexus_lua.c lua_objs.c lua_config.c lua_irc.c lua_func.c lua_type.c)
    16 set (LUA_SOURCES nexus_lua.c lua_objs.c lua_config.c lua_irc.c lua_func.c lua_type.c)
    17 set (CONSOLE_SOURCES console.c lua_console.c)
    17 set (CONSOLE_SOURCES console.c lua_console.c)
    18 
    18 
    19 set (NEXUS_SOURCES nexus.c ${CORE_SOURCES} ${IO_SOURCES} ${IRC_SOURCES} ${LUA_SOURCES} ${CONSOLE_SOURCES} signals.c module.c config.c)
    19 set (NEXUS_SOURCES nexus.c ${CORE_SOURCES} ${IO_SOURCES} ${IRC_SOURCES} ${LUA_SOURCES} ${CONSOLE_SOURCES} signals.c module.c config.c)