mirror of
https://github.com/reactos/reactos.git
synced 2024-10-30 19:41:57 +00:00
3b44e882cb
Add a usermode test application for tunnel cache. It is based on MS article at: http://support.microsoft.com/?kbid=172190 Tested successfully on Windows 7 & NTFS. Feel free to test on w2k3 NTFS or FAT/FAT32. svn path=/trunk/; revision=62579
9 lines
233 B
CMake
9 lines
233 B
CMake
|
|
list(APPEND SOURCE
|
|
tunneltest.c)
|
|
|
|
add_executable(tunneltest ${SOURCE})
|
|
set_module_type(tunneltest win32cui UNICODE)
|
|
add_importlibs(tunneltest msvcrt kernel32 ntdll)
|
|
add_cd_file(TARGET tunneltest DESTINATION reactos/bin FOR all)
|