Add apitests and pseh2_test.


svn path=/trunk/; revision=50277
This commit is contained in:
Sylvain Petreolle 2011-01-03 11:24:54 +00:00
parent 09f4598c1d
commit 6d8a71b4a4
8 changed files with 15 additions and 1 deletions

View file

@ -4,6 +4,6 @@ add_subdirectory(apitests)
#add_subdirectory(dxtest)
#add_subdirectory(regtests)
add_subdirectory(rosautotest)
#add_subdirectory(tests)
add_subdirectory(tests)
#add_subdirectory(win32)
add_subdirectory(winetests)

View file

@ -5,3 +5,4 @@ add_executable(dciman32_apitest DCICreatePrimary.c testlist.c)
target_link_libraries(dciman32_apitest wine)
set_module_type(dciman32_apitest win32cui)
add_importlibs(dciman32_apitest msvcrt kernel32 ntdll)
add_cab_target(dciman32_apitest 7)

View file

@ -47,3 +47,4 @@ add_executable(gdi32_apitest ${SOURCE})
target_link_libraries(gdi32_apitest wine ${PSEH_LIB})
set_module_type(gdi32_apitest win32cui)
add_importlibs(gdi32_apitest gdi32 user32 msvcrt kernel32 ntdll)
add_cab_target(gdi32_apitest 7)

View file

@ -16,3 +16,4 @@ target_link_libraries(ntdll_apitest wine
)
set_module_type(ntdll_apitest win32cui)
add_importlibs(ntdll_apitest ntdll)
add_cab_target(ntdll_apitest 7)

View file

@ -13,3 +13,4 @@ add_executable(user32_apitest ${SOURCE})
target_link_libraries(user32_apitest wine)
set_module_type(user32_apitest win32cui)
add_importlibs(user32_apitest gdi32 user32 msvcrt kernel32 ntdll)
add_cab_target(user32_apitest 7)

View file

@ -11,3 +11,4 @@ add_executable(ws2_32_apitest ${SOURCE})
target_link_libraries(ws2_32_apitest wine)
set_module_type(ws2_32_apitest win32cui)
add_importlibs(ws2_32_apitest ws2_32 msvcrt kernel32 ntdll)
add_cab_target(ws2_32_apitest 7)

View file

@ -0,0 +1 @@
add_subdirectory(pseh2)

View file

@ -0,0 +1,8 @@
add_definitions(-D_DLL -D__USE_CRTIMP)
add_executable(pseh2_test psehtest.c psehtest2.c)
target_link_libraries(pseh2_test wine ${PSEH_LIB})
set_module_type(pseh2_test win32cui)
add_importlibs(pseh2_test msvcrt kernel32 ntdll)
add_cab_target(pseh2_test 7)