2013-01-25 23:24:46 +00:00
|
|
|
|
2016-05-16 18:03:09 +00:00
|
|
|
set_cpp(WITH_RTTI WITH_RUNTIME WITH_EXCEPTIONS)
|
|
|
|
if(NOT MSVC)
|
|
|
|
# HACK: this should be enabled globally!
|
|
|
|
add_compile_flags_language("-std=c++11" "CXX")
|
|
|
|
endif()
|
|
|
|
|
|
|
|
include_directories(
|
|
|
|
${REACTOS_SOURCE_DIR}/sdk/lib/atl
|
|
|
|
includes)
|
|
|
|
|
2013-01-25 23:24:46 +00:00
|
|
|
list(APPEND SOURCE
|
2016-05-16 18:03:09 +00:00
|
|
|
ACListISF.cpp
|
2017-12-16 16:22:48 +00:00
|
|
|
IACLCustomMRU.cpp
|
2019-05-09 05:03:49 +00:00
|
|
|
SHEnumClassesOfCategories.cpp
|
2013-01-25 23:24:46 +00:00
|
|
|
SHExplorerParseCmdLine.c
|
|
|
|
testlist.c)
|
|
|
|
|
|
|
|
add_executable(browseui_apitest ${SOURCE})
|
2016-05-16 18:03:09 +00:00
|
|
|
target_link_libraries(browseui_apitest uuid wine)
|
2013-01-25 23:24:46 +00:00
|
|
|
set_module_type(browseui_apitest win32cui)
|
2017-12-16 16:22:48 +00:00
|
|
|
add_importlibs(browseui_apitest advapi32 shell32 ole32 shlwapi msvcrt kernel32 ntdll)
|
2017-01-13 09:24:15 +00:00
|
|
|
add_rostests_file(TARGET browseui_apitest)
|