-
Notifications
You must be signed in to change notification settings - Fork 10
/
CMakeLists.txt
32 lines (27 loc) · 2.4 KB
/
CMakeLists.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
cmake_minimum_required(VERSION 2.8.10)
set (INCLUDE_DIR ${CMAKE_CURRENT_SOURCE_DIR}/src
/usr/local/include
)
set(LIB_DIR ${CMAKE_CURRENT_SOURCE_DIR}/lib
/usr/local/lib
/usr/lib/x86_64-linux-gnu
${CMAKE_CURRENT_SOURCE_DIR}/)
add_compile_options(-std=c++11 -g)
include_directories(${INCLUDE_DIR})
link_directories(${LIB_DIR})
add_executable(epoller epoller.cpp test/epoller_test.cpp)
add_executable(channel simplebuffer.cpp httpmessage.cpp channel.cpp test/channel_test.cpp)
add_executable(minheap simplebuffer.cpp httpmessage.cpp channel.cpp minheap.cpp test/minheap_test.cpp)
add_executable(eventloop simplebuffer.cpp httpmessage.cpp epoller.cpp channel.cpp minheap.cpp eventloop.cpp test/eventloop_test.cpp)
add_executable(netutil netutil.cpp test/netutil_test.cpp)
add_executable(tcpserver simplebuffer.cpp httpmessage.cpp epoller.cpp channel.cpp minheap.cpp eventloop.cpp eventloopthread.cpp eventloopthreadpool.cpp netutil.cpp tcpserver.cpp test/tcpserver_test.cpp)
add_executable(httpcgiserver simplebuffer.cpp httpmessage.cpp epoller.cpp channel.cpp minheap.cpp eventloop.cpp eventloopthread.cpp eventloopthreadpool.cpp netutil.cpp tcpserver.cpp basecgi.cpp exampleCgi/examplecgi.cpp loginCgi/logincgi.cpp uploadFileCgi/uploadfilecgi.cpp cgidispatch.cpp httpcgiserver.cpp test/httpcgiserver_test.cpp)
add_executable(httpcgiservermain simplebuffer.cpp httpmessage.cpp epoller.cpp channel.cpp minheap.cpp eventloop.cpp eventloopthread.cpp eventloopthreadpool.cpp netutil.cpp tcpserver.cpp basecgi.cpp exampleCgi/examplecgi.cpp loginCgi/logincgi.cpp uploadFileCgi/uploadfilecgi.cpp cgidispatch.cpp httpcgiserver.cpp httpcgiservermain.cpp)
target_link_libraries(epoller ${CMAKE_CURRENT_SOURCE_DIR}/libasynclogStaticLib.a -lpthread)
target_link_libraries(channel ${CMAKE_CURRENT_SOURCE_DIR}/libasynclogStaticLib.a -lpthread)
target_link_libraries(minheap ${CMAKE_CURRENT_SOURCE_DIR}/libasynclogStaticLib.a -lpthread)
target_link_libraries(eventloop ${CMAKE_CURRENT_SOURCE_DIR}/libasynclogStaticLib.a -lpthread)
target_link_libraries(netutil ${CMAKE_CURRENT_SOURCE_DIR}/libasynclogStaticLib.a -lpthread)
target_link_libraries(tcpserver ${CMAKE_CURRENT_SOURCE_DIR}/libasynclogStaticLib.a -lpthread)
target_link_libraries(httpcgiserver ${CMAKE_CURRENT_SOURCE_DIR}/libasynclogStaticLib.a -lpthread)
target_link_libraries(httpcgiservermain ${CMAKE_CURRENT_SOURCE_DIR}/libasynclogStaticLib.a -lpthread)