mirror of
https://github.com/reactos/reactos.git
synced 2025-01-06 06:20:13 +00:00
003b19dc3c
Add tests for IAutoComplete objects, especially on the drop-down window and related controls. CORE-9281
19 lines
558 B
CMake
19 lines
558 B
CMake
|
|
include_directories(
|
|
includes)
|
|
|
|
list(APPEND SOURCE
|
|
ACListISF.cpp
|
|
IACLCustomMRU.cpp
|
|
IAutoComplete.cpp
|
|
SHEnumClassesOfCategories.cpp
|
|
SHExplorerParseCmdLine.c
|
|
testlist.c)
|
|
|
|
add_executable(browseui_apitest ${SOURCE})
|
|
|
|
target_link_libraries(browseui_apitest uuid wine cpprt atl_classes)
|
|
set_target_cpp_properties(browseui_apitest WITH_EXCEPTIONS WITH_RTTI)
|
|
set_module_type(browseui_apitest win32cui)
|
|
add_importlibs(browseui_apitest advapi32 shell32 ole32 shlwapi msvcrt user32 kernel32 ntdll)
|
|
add_rostests_file(TARGET browseui_apitest)
|