mirror of
https://github.com/reactos/reactos.git
synced 2024-11-03 13:25:57 +00:00
c0e495f046
* Addendum to r64795. * Also remove unneeded wine linking and ntdll importing. * Remove redundant defines. svn path=/trunk/; revision=64796
11 lines
347 B
CMake
11 lines
347 B
CMake
|
|
add_definitions(-DUSE_WINE_TODOS)
|
|
add_executable(propsys_winetest propstore.c propsys.c testlist.c)
|
|
set_module_type(propsys_winetest win32cui)
|
|
add_importlibs(propsys_winetest propsys ole32 oleaut32 msvcrt kernel32)
|
|
|
|
if(MSVC)
|
|
add_importlibs(propsys_winetest ntdll)
|
|
endif()
|
|
|
|
add_cd_file(TARGET propsys_winetest DESTINATION reactos/bin FOR all)
|