reactos/dll/win32/psapi/CMakeLists.txt
Amine Khaldi 527f2f9057 [SHELL/EXPERIMENTS]
* Create a branch for some evul shell experiments.

svn path=/branches/shell-experiments/; revision=61927
2014-02-02 19:37:27 +00:00

16 lines
353 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)