huangcm
2025-02-24 69ed55dec4b2116a19e4cca4393cbc014fce5fb2
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
# ExecServer
 
set(XSCORE_SRCS
   xsDefs.cpp
   xsDefs.hpp
   xsExecutionServer.cpp
   xsExecutionServer.hpp
   xsPosixFileReader.cpp
   xsPosixFileReader.hpp
   xsPosixTestProcess.cpp
   xsPosixTestProcess.hpp
   xsProtocol.cpp
   xsProtocol.hpp
   xsTcpServer.cpp
   xsTcpServer.hpp
   xsTestDriver.cpp
   xsTestDriver.hpp
   xsTestProcess.cpp
   xsTestProcess.hpp
   )
 
set(XSCORE_LIBS
   decpp
   deutil
   dethread
   debase
   )
 
if (DE_OS_IS_WIN32)
   set(XSCORE_SRCS
       ${XSCORE_SRCS}
       xsWin32TestProcess.cpp
       xsWin32TestProcess.hpp)
endif ()
 
add_library(xscore STATIC ${XSCORE_SRCS})
target_link_libraries(xscore ${XSCORE_LIBS})
 
include_directories(.)
 
if (DE_OS_IS_WIN32 OR DE_OS_IS_OSX OR DE_OS_IS_UNIX)
   # Build standalone execserver binary
   add_executable(execserver tools/xsMain.cpp)
   target_link_libraries(execserver xscore)
 
   # Tests
   add_executable(execserver-test tools/xsTest.cpp)
   target_link_libraries(execserver-test xscore)
   add_dependencies(execserver-test execserver)
 
   # Basic client
   add_executable(execserver-client tools/xsClient.cpp)
   target_link_libraries(execserver-client xscore)
endif ()