mirror of
https://github.com/reactos/reactos.git
synced 2024-11-03 21:34:00 +00:00
91d86a9a91
- Add an apitest for our delayload functions. - Improve the delayload (mainly the failure cases, throw exceptions where expected etc). - Add some tests for advanced delayload features (currently blocked on CORE-6504 and CORE-10957) svn path=/trunk/; revision=71190
7 lines
332 B
CMake
7 lines
332 B
CMake
|
|
add_executable(sdk_apitest delayimp.cpp testlist.c)
|
|
set_module_type(sdk_apitest win32cui)
|
|
target_link_libraries(sdk_apitest ${PSEH_LIB})
|
|
add_importlibs(sdk_apitest msvcrt kernel32 ntdll)
|
|
add_delay_importlibs(sdk_apitest winmm version dbghelp shlwapi sfc_os imagehlp)
|
|
add_cd_file(TARGET sdk_apitest DESTINATION reactos/bin FOR all)
|