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