mirror of
https://github.com/reactos/reactos.git
synced 2024-11-05 14:19:25 +00:00
23 lines
576 B
Text
23 lines
576 B
Text
|
|
||
|
add_definitions(
|
||
|
-D__ROS_LONG64__
|
||
|
-DWINETEST_USE_DBGSTR_LONGLONG
|
||
|
-DUNICODE
|
||
|
-D_UNICODE
|
||
|
-D_ATL_NO_EXCEPTIONS)
|
||
|
|
||
|
set_cpp(WITH_RUNTIME)
|
||
|
|
||
|
include_directories(${REACTOS_SOURCE_DIR}/sdk/lib/atl
|
||
|
${CMAKE_CURRENT_BINARY_DIR})
|
||
|
|
||
|
list(APPEND SOURCE
|
||
|
shellext.cpp
|
||
|
testlist.c)
|
||
|
|
||
|
add_executable(fontext_apitest ${SOURCE})
|
||
|
set_module_type(fontext_apitest win32cui)
|
||
|
target_link_libraries(fontext_apitest uuid ${PSEH_LIB})
|
||
|
add_importlibs(fontext_apitest oleaut32 ole32 shell32 user32 msvcrt kernel32 ntdll)
|
||
|
add_rostests_file(TARGET fontext_apitest)
|