1 2add_definitions(-D__WINESRC__) 3include_directories(${REACTOS_SOURCE_DIR}/sdk/include/reactos/wine) 4spec2def(dpnhpast.dll dpnhpast.spec) 5 6list(APPEND SOURCE 7 main.c 8 ${CMAKE_CURRENT_BINARY_DIR}/dpnhpast_stubs.c 9 ${CMAKE_CURRENT_BINARY_DIR}/dpnhpast.def) 10 11add_library(dpnhpast MODULE ${SOURCE} version.rc) 12set_module_type(dpnhpast win32dll) 13target_link_libraries(dpnhpast dxguid uuid wine) 14add_importlibs(dpnhpast msvcrt kernel32 ntdll) 15add_cd_file(TARGET dpnhpast DESTINATION reactos/system32 FOR all) 16