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
17 lines
382 B
CMake
17 lines
382 B
CMake
|
|
add_definitions(-DUSE_WINE_TODOS)
|
|
|
|
list(APPEND SOURCE
|
|
info.c
|
|
install.c
|
|
testlist.c)
|
|
|
|
add_executable(version_winetest ${SOURCE} version.rc)
|
|
set_module_type(version_winetest win32cui)
|
|
add_importlibs(version_winetest version msvcrt kernel32)
|
|
|
|
if(MSVC)
|
|
add_importlibs(version_winetest ntdll)
|
|
endif()
|
|
|
|
add_cd_file(TARGET version_winetest DESTINATION reactos/bin FOR all)
|