2013-10-10 09:36:13 +00:00
|
|
|
|
2019-04-16 21:04:07 +00:00
|
|
|
add_definitions(
|
|
|
|
-D_ATL_NO_EXCEPTIONS)
|
|
|
|
|
2013-10-10 09:36:13 +00:00
|
|
|
set_cpp(WITH_RUNTIME)
|
2015-06-20 09:07:29 +00:00
|
|
|
|
2017-12-17 12:31:22 +00:00
|
|
|
spec2def(shell32_apitest.exe shell32_apitest.spec)
|
|
|
|
|
2016-04-20 12:39:37 +00:00
|
|
|
include_directories(${REACTOS_SOURCE_DIR}/sdk/lib/atl)
|
2015-06-20 09:07:29 +00:00
|
|
|
|
2017-12-17 12:31:22 +00:00
|
|
|
list(APPEND SOURCE
|
|
|
|
AddCommas.cpp
|
2016-11-12 14:54:12 +00:00
|
|
|
CFSFolder.cpp
|
2015-06-20 16:28:38 +00:00
|
|
|
CMyComputer.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
|
2017-12-20 21:32:06 +00:00
|
|
|
IShellFolderViewCB.cpp
|
2018-06-07 06:48:42 +00:00
|
|
|
OpenAs_RunDLL.cpp
|
2017-06-10 17:46:11 +00:00
|
|
|
PathResolve.cpp
|
2017-12-08 23:51:56 +00:00
|
|
|
SHCreateFileExtractIconW.cpp
|
2018-06-02 02:05:52 +00:00
|
|
|
SHParseDisplayName.cpp
|
2018-08-05 11:39:17 +00:00
|
|
|
ShellExecCmdLine.cpp
|
2016-11-09 23:18:23 +00:00
|
|
|
ShellExecuteEx.cpp
|
2018-06-02 02:05:52 +00:00
|
|
|
ShellState.cpp
|
|
|
|
menu.cpp
|
2016-03-28 15:35:21 +00:00
|
|
|
shelltest.cpp
|
2017-12-17 12:31:22 +00:00
|
|
|
shelltest.h)
|
|
|
|
|
|
|
|
add_executable(shell32_apitest
|
|
|
|
${SOURCE}
|
2017-05-10 10:06:02 +00:00
|
|
|
testlist.c
|
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
|
|
|
|
2016-03-28 15:35:21 +00:00
|
|
|
target_link_libraries(shell32_apitest wine uuid ${PSEH_LIB})
|
2013-10-10 09:36:13 +00:00
|
|
|
set_module_type(shell32_apitest win32cui)
|
2016-11-09 22:13:26 +00:00
|
|
|
add_importlibs(shell32_apitest user32 gdi32 shell32 ole32 oleaut32 advapi32 shlwapi msvcrt kernel32 ntdll)
|
2017-12-17 12:31:22 +00:00
|
|
|
add_pch(shell32_apitest shelltest.h SOURCE)
|
2017-01-13 09:24:15 +00:00
|
|
|
add_rostests_file(TARGET shell32_apitest)
|