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
18 lines
374 B
CMake
18 lines
374 B
CMake
|
|
list(APPEND SOURCE
|
|
enum_files.c
|
|
enum_jobs.c
|
|
file.c
|
|
job.c
|
|
qmgr.c
|
|
testlist.c)
|
|
|
|
add_executable(qmgr_winetest ${SOURCE})
|
|
set_module_type(qmgr_winetest win32cui)
|
|
add_importlibs(qmgr_winetest ole32 shlwapi user32 msvcrt kernel32)
|
|
|
|
if(MSVC)
|
|
add_importlibs(qmgr_winetest ntdll)
|
|
endif()
|
|
|
|
add_cd_file(TARGET qmgr_winetest DESTINATION reactos/bin FOR all)
|