mirror of
https://github.com/reactos/reactos.git
synced 2024-11-09 08:08:38 +00:00
c0e495f046
* Addendum to r64795. * Also remove unneeded wine linking and ntdll importing. * Remove redundant defines. svn path=/trunk/; revision=64796
10 lines
258 B
CMake
10 lines
258 B
CMake
|
|
add_executable(pdh_winetest pdh.c testlist.c)
|
|
set_module_type(pdh_winetest win32cui)
|
|
add_importlibs(pdh_winetest pdh msvcrt kernel32)
|
|
|
|
if(MSVC)
|
|
add_importlibs(pdh_winetest ntdll)
|
|
endif()
|
|
|
|
add_cd_file(TARGET pdh_winetest DESTINATION reactos/bin FOR all)
|