mirror of
https://github.com/reactos/reactos.git
synced 2024-11-10 16:48:16 +00:00
9e7f030eeb
* Sync to Wine 1.5.4. I excluded devinst tests from the sync until bug #7077 is fixed. svn path=/trunk/; revision=56628
25 lines
574 B
CMake
25 lines
574 B
CMake
|
|
add_definitions(
|
|
-D__ROS_LONG64__)
|
|
|
|
list(APPEND SOURCE
|
|
devclass.c
|
|
devinst.c
|
|
diskspace.c
|
|
install.c
|
|
misc.c
|
|
parser.c
|
|
query.c
|
|
setupcab.c
|
|
stringtable.c
|
|
testlist.c)
|
|
|
|
add_executable(setupapi_winetest ${SOURCE})
|
|
target_link_libraries(setupapi_winetest wine)
|
|
set_module_type(setupapi_winetest win32cui)
|
|
add_importlibs(setupapi_winetest advapi32 setupapi user32 msvcrt kernel32 ntdll)
|
|
add_cd_file(TARGET setupapi_winetest DESTINATION reactos/bin FOR all)
|
|
|
|
if(NOT MSVC)
|
|
add_target_compile_flags(setupapi_winetest "-Wno-format")
|
|
endif()
|