2010-12-07 11:40:10 +00:00
|
|
|
|
2024-05-21 16:33:42 +00:00
|
|
|
add_definitions(
|
|
|
|
-D__WINESRC__
|
|
|
|
-Dstrcasecmp=_stricmp
|
|
|
|
)
|
|
|
|
|
2010-12-07 11:40:10 +00:00
|
|
|
list(APPEND SOURCE
|
|
|
|
devinst.c
|
2015-11-30 22:25:50 +00:00
|
|
|
dialog.c
|
2012-05-19 14:09:14 +00:00
|
|
|
diskspace.c
|
2010-12-07 11:40:10 +00:00
|
|
|
install.c
|
|
|
|
misc.c
|
|
|
|
parser.c
|
|
|
|
query.c
|
|
|
|
setupcab.c
|
|
|
|
stringtable.c
|
|
|
|
testlist.c)
|
|
|
|
|
2016-07-03 11:54:30 +00:00
|
|
|
add_executable(setupapi_winetest ${SOURCE} setupapi.rc)
|
2010-12-07 11:40:10 +00:00
|
|
|
set_module_type(setupapi_winetest win32cui)
|
2019-02-02 13:15:35 +00:00
|
|
|
target_link_libraries(setupapi_winetest uuid)
|
2018-04-03 12:47:12 +00:00
|
|
|
add_importlibs(setupapi_winetest advapi32 setupapi user32 shell32 msvcrt kernel32 ntdll)
|
2017-01-13 09:24:15 +00:00
|
|
|
add_rostests_file(TARGET setupapi_winetest)
|
2020-09-21 10:16:02 +00:00
|
|
|
|
2021-04-09 00:58:19 +00:00
|
|
|
if(CMAKE_C_COMPILER_ID STREQUAL "GNU")
|
2020-09-21 10:16:02 +00:00
|
|
|
target_compile_options(setupapi_winetest PRIVATE -Wno-format-overflow)
|
|
|
|
endif()
|