1 2set_cpp(WITH_RUNTIME) 3 4spec2def(shell32_apitest.exe shell32_apitest.spec) 5 6include_directories(${REACTOS_SOURCE_DIR}/sdk/lib/atl) 7 8list(APPEND SOURCE 9 AddCommas.cpp 10 Control_RunDLLW.cpp 11 CFSFolder.cpp 12 CMyComputer.cpp 13 CShellDesktop.cpp 14 CShellLink.cpp 15 CUserNotification.cpp 16 menu.cpp 17 PathResolve.cpp 18 SHCreateFileExtractIconW.cpp 19 ShellExecuteEx.cpp 20 shelltest.cpp 21 SHParseDisplayName.cpp 22 shelltest.h) 23 24add_executable(shell32_apitest 25 ${SOURCE} 26 testlist.c 27 resource.rc 28 ${CMAKE_CURRENT_BINARY_DIR}/shell32_apitest.def) 29 30target_link_libraries(shell32_apitest wine uuid ${PSEH_LIB}) 31set_module_type(shell32_apitest win32cui) 32add_importlibs(shell32_apitest user32 gdi32 shell32 ole32 oleaut32 advapi32 shlwapi msvcrt kernel32 ntdll) 33add_pch(shell32_apitest shelltest.h SOURCE) 34add_rostests_file(TARGET shell32_apitest) 35