1 2set_cpp(WITH_RTTI WITH_RUNTIME WITH_EXCEPTIONS) 3if(NOT MSVC) 4 # HACK: this should be enabled globally! 5 add_compile_flags_language("-std=c++11" "CXX") 6endif() 7 8include_directories( 9 ${REACTOS_SOURCE_DIR}/sdk/lib/atl 10 includes) 11 12list(APPEND SOURCE 13 ACListISF.cpp 14 IACLCustomMRU.cpp 15 SHExplorerParseCmdLine.c 16 testlist.c) 17 18add_executable(browseui_apitest ${SOURCE}) 19target_link_libraries(browseui_apitest uuid wine) 20set_module_type(browseui_apitest win32cui) 21add_importlibs(browseui_apitest advapi32 shell32 ole32 shlwapi msvcrt kernel32 ntdll) 22add_rostests_file(TARGET browseui_apitest) 23