2013-10-10 09:36:13 +00:00
|
|
|
|
2017-12-17 12:31:22 +00:00
|
|
|
spec2def(shell32_apitest.exe shell32_apitest.spec)
|
|
|
|
|
|
|
|
list(APPEND SOURCE
|
2024-03-19 22:36:14 +00:00
|
|
|
closewnd.cpp
|
2017-12-17 12:31:22 +00:00
|
|
|
AddCommas.cpp
|
2016-11-12 14:54:12 +00:00
|
|
|
CFSFolder.cpp
|
2020-05-28 01:58:26 +00:00
|
|
|
CheckEscapes.cpp
|
2019-10-10 22:15:41 +00:00
|
|
|
CIDLData.cpp
|
2015-06-20 16:28:38 +00:00
|
|
|
CMyComputer.cpp
|
2023-02-02 01:09:00 +00:00
|
|
|
CommandLineToArgvW.cpp
|
2015-06-20 09:07:29 +00:00
|
|
|
CShellDesktop.cpp
|
2016-06-25 22:09:49 +00:00
|
|
|
CShellLink.cpp
|
2018-02-15 00:17:32 +00:00
|
|
|
CUserNotification.cpp
|
2018-06-02 02:05:52 +00:00
|
|
|
Control_RunDLLW.cpp
|
2019-11-12 07:49:52 +00:00
|
|
|
DragDrop.cpp
|
2019-12-11 23:24:20 +00:00
|
|
|
ExtractIconEx.cpp
|
2021-06-05 21:51:42 +00:00
|
|
|
FindExecutable.cpp
|
2023-08-04 13:54:31 +00:00
|
|
|
GetDisplayNameOf.cpp
|
2024-04-12 12:29:07 +00:00
|
|
|
GUIDFromString.cpp
|
2023-09-21 00:14:40 +00:00
|
|
|
Int64ToString.cpp
|
2017-12-20 21:32:06 +00:00
|
|
|
IShellFolderViewCB.cpp
|
2024-05-30 16:18:39 +00:00
|
|
|
ItemIDList.cpp
|
2018-06-07 06:48:42 +00:00
|
|
|
OpenAs_RunDLL.cpp
|
2023-11-29 13:50:01 +00:00
|
|
|
PathIsEqualOrSubFolder.cpp
|
2023-12-02 14:07:28 +00:00
|
|
|
PathIsTemporary.cpp
|
2017-06-10 17:46:11 +00:00
|
|
|
PathResolve.cpp
|
2024-03-19 22:36:14 +00:00
|
|
|
RealShellExecuteEx.cpp
|
2020-04-09 15:57:08 +00:00
|
|
|
SHAppBarMessage.cpp
|
2020-02-24 15:45:44 +00:00
|
|
|
SHChangeNotify.cpp
|
2019-10-19 22:37:05 +00:00
|
|
|
SHCreateDataObject.cpp
|
2021-11-15 19:37:09 +00:00
|
|
|
SHCreateFileDataObject.cpp
|
2017-12-08 23:51:56 +00:00
|
|
|
SHCreateFileExtractIconW.cpp
|
2018-06-02 02:05:52 +00:00
|
|
|
SHParseDisplayName.cpp
|
2024-02-29 11:26:01 +00:00
|
|
|
SHRestricted.cpp
|
2023-08-05 10:44:13 +00:00
|
|
|
She.cpp
|
2018-08-05 11:39:17 +00:00
|
|
|
ShellExecCmdLine.cpp
|
2016-11-09 23:18:23 +00:00
|
|
|
ShellExecuteEx.cpp
|
2019-12-25 08:15:39 +00:00
|
|
|
ShellExecuteW.cpp
|
2020-10-12 00:52:21 +00:00
|
|
|
ShellHook.cpp
|
2018-06-02 02:05:52 +00:00
|
|
|
ShellState.cpp
|
2021-07-23 18:34:02 +00:00
|
|
|
SHGetAttributesFromDataObject.cpp
|
2019-11-18 11:02:18 +00:00
|
|
|
SHLimitInputEdit.cpp
|
2018-06-02 02:05:52 +00:00
|
|
|
menu.cpp
|
2020-05-09 21:37:40 +00:00
|
|
|
shelltest.cpp)
|
|
|
|
|
|
|
|
list(APPEND PCH_SKIP_SOURCE
|
|
|
|
testlist.c)
|
2017-12-17 12:31:22 +00:00
|
|
|
|
|
|
|
add_executable(shell32_apitest
|
|
|
|
${SOURCE}
|
2020-05-09 21:37:40 +00:00
|
|
|
${PCH_SKIP_SOURCE}
|
2017-12-08 23:51:56 +00:00
|
|
|
resource.rc
|
2017-05-10 10:06:02 +00:00
|
|
|
${CMAKE_CURRENT_BINARY_DIR}/shell32_apitest.def)
|
2017-12-17 12:31:22 +00:00
|
|
|
|
2021-12-04 00:08:20 +00:00
|
|
|
set_target_properties(shell32_apitest
|
|
|
|
PROPERTIES
|
|
|
|
ENABLE_EXPORTS TRUE
|
|
|
|
DEFINE_SYMBOL "")
|
|
|
|
|
2020-09-18 09:08:58 +00:00
|
|
|
target_link_libraries(shell32_apitest wine uuid ${PSEH_LIB} cpprt atl_classes)
|
2013-10-10 09:36:13 +00:00
|
|
|
set_module_type(shell32_apitest win32cui)
|
2024-03-13 08:09:20 +00:00
|
|
|
target_compile_definitions(shell32_apitest PRIVATE UNICODE _UNICODE)
|
2022-10-31 23:55:42 +00:00
|
|
|
add_importlibs(shell32_apitest user32 gdi32 shell32 shlwapi ole32 oleaut32 advapi32 shlwapi msvcrt kernel32 ntdll)
|
2020-05-09 21:37:40 +00:00
|
|
|
add_pch(shell32_apitest shelltest.h "${PCH_SKIP_SOURCE}")
|
2017-01-13 09:24:15 +00:00
|
|
|
add_rostests_file(TARGET shell32_apitest)
|
2020-02-28 23:13:52 +00:00
|
|
|
|
2021-06-05 21:51:42 +00:00
|
|
|
# shell32_apitest_sub.exe
|
|
|
|
add_executable(shell32_apitest_sub shell32_apitest_sub.cpp)
|
|
|
|
target_link_libraries(shell32_apitest_sub cpprt atl_classes)
|
|
|
|
set_module_type(shell32_apitest_sub win32gui UNICODE)
|
|
|
|
add_importlibs(shell32_apitest_sub msvcrt kernel32 user32 shell32 shlwapi ole32)
|
|
|
|
add_rostests_file(TARGET shell32_apitest_sub SUBDIR testdata)
|