2011-05-16 13:12:07 +00:00
|
|
|
|
2012-03-07 21:21:27 +00:00
|
|
|
spec2def(psapi.dll psapi.spec ADD_IMPORTLIB)
|
2011-05-16 13:12:07 +00:00
|
|
|
|
|
|
|
list(APPEND SOURCE
|
|
|
|
psapi.c
|
|
|
|
psapi.rc
|
|
|
|
${CMAKE_CURRENT_BINARY_DIR}/psapi.def)
|
|
|
|
|
2019-03-20 13:19:48 +00:00
|
|
|
add_library(psapi MODULE ${SOURCE})
|
2024-02-22 12:37:36 +00:00
|
|
|
set_module_type(psapi win32dll ENTRYPOINT DllMain 12)
|
2013-10-30 10:56:02 +00:00
|
|
|
target_link_libraries(psapi ${PSEH_LIB})
|
2024-02-22 12:37:36 +00:00
|
|
|
add_importlibs(psapi kernel32 ntdll)
|
2011-05-16 13:12:07 +00:00
|
|
|
add_cd_file(TARGET psapi DESTINATION reactos/system32 FOR all)
|