reactos/dll/win32/psapi/CMakeLists.txt
Amine Khaldi 0ee830d7a4 * Create a branch for USB experiments.
svn path=/branches/usb-experiments/; revision=72629
2016-09-09 15:11:19 +00:00

13 lines
351 B
CMake

spec2def(psapi.dll psapi.spec ADD_IMPORTLIB)
list(APPEND SOURCE
psapi.c
psapi.rc
${CMAKE_CURRENT_BINARY_DIR}/psapi.def)
add_library(psapi SHARED ${SOURCE})
set_module_type(psapi win32dll)
target_link_libraries(psapi ${PSEH_LIB})
add_importlibs(psapi msvcrt kernel32 ntdll)
add_cd_file(TARGET psapi DESTINATION reactos/system32 FOR all)