mirror of
https://github.com/reactos/reactos.git
synced 2024-11-03 21:34:00 +00:00
1dc1c3f7ef
- Fix and enable tests for redirection support in LoadLibraryExW. - Add tests for the default activation context that is active for every process. svn path=/trunk/; revision=73568
42 lines
1 KiB
CMake
42 lines
1 KiB
CMake
|
|
add_subdirectory(redirptest)
|
|
|
|
list(APPEND SOURCE
|
|
DefaultActCtx.c
|
|
dosdev.c
|
|
FindActCtxSectionStringW.c
|
|
FindFiles.c
|
|
GetComputerNameEx.c
|
|
GetCurrentDirectory.c
|
|
GetDriveType.c
|
|
GetModuleFileName.c
|
|
interlck.c
|
|
LoadLibraryExW.c
|
|
lstrcpynW.c
|
|
MultiByteToWideChar.c
|
|
PrivMoveFileIdentityW.c
|
|
SetConsoleWindowInfo.c
|
|
SetCurrentDirectory.c
|
|
SetUnhandledExceptionFilter.c
|
|
TerminateProcess.c
|
|
TunnelCache.c
|
|
WideCharToMultiByte.c
|
|
testlist.c
|
|
Mailslot.c)
|
|
|
|
add_executable(kernel32_apitest ${SOURCE})
|
|
target_link_libraries(kernel32_apitest wine ${PSEH_LIB})
|
|
set_module_type(kernel32_apitest win32cui)
|
|
add_delay_importlibs(kernel32_apitest advapi32 shlwapi)
|
|
add_importlibs(kernel32_apitest msvcrt kernel32 ntdll)
|
|
add_rostests_file(TARGET kernel32_apitest)
|
|
|
|
list(APPEND MANIFEST_FILES
|
|
classtest.manifest
|
|
comctl32dep.manifest
|
|
dep1.manifest
|
|
deptest.manifest)
|
|
|
|
foreach(item ${MANIFEST_FILES})
|
|
add_rostests_file(FILE "${CMAKE_CURRENT_SOURCE_DIR}/${item}")
|
|
endforeach(item)
|