mirror of
https://github.com/reactos/reactos.git
synced 2024-11-03 21:34:00 +00:00
1ea34407b8
- Abstract unidirectional anonymous pipes into a CPipe class - Abstract a process with redirected output into a CPipedProcess class - Use these abstractions to avoid polling for output from test processes. Instead, use blocking read operations to yield the CPU while waiting for data. ROSTESTS-144 #resolve svn path=/trunk/; revision=66316
31 lines
846 B
CMake
31 lines
846 B
CMake
|
|
set_cpp(WITH_EXCEPTIONS WITH_STL)
|
|
|
|
list(APPEND SOURCE
|
|
CConfiguration.cpp
|
|
CFatalException.cpp
|
|
CInvalidParameterException.cpp
|
|
CJournaledTestList.cpp
|
|
CPipe.cpp
|
|
CPipedProcess.cpp
|
|
CProcess.cpp
|
|
CSimpleException.cpp
|
|
CTest.cpp
|
|
CTestInfo.cpp
|
|
CTestList.cpp
|
|
CVirtualTestList.cpp
|
|
CWebService.cpp
|
|
CWineTest.cpp
|
|
main.cpp
|
|
misc.cpp
|
|
shutdown.cpp
|
|
tools.cpp
|
|
precomp.h)
|
|
|
|
add_executable(rosautotest ${SOURCE} ${REACTOS_BINARY_DIR}/include/reactos/rosautotestmsg.rc)
|
|
set_module_type(rosautotest win32cui UNICODE)
|
|
add_importlibs(rosautotest advapi32 shell32 user32 wininet msvcrt kernel32 ntdll)
|
|
add_pch(rosautotest precomp.h SOURCE)
|
|
add_message_headers(ANSI rosautotestmsg.mc)
|
|
add_dependencies(rosautotest rosautotestmsg)
|
|
add_cd_file(TARGET rosautotest DESTINATION reactos/system32 FOR all)
|