reactos/dll/win32/rasadhlp/CMakeLists.txt
Amine Khaldi ddb3d908c9 * Sync up to trunk HEAD (r62285). Branch guys deserve the significant speedups too ;)
svn path=/branches/shell-experiments/; revision=62286
2014-02-22 10:31:26 +00:00

21 lines
510 B
CMake

include_directories(${REACTOS_SOURCE_DIR}/include/reactos/winsock)
spec2def(rasadhlp.dll rasadhlp.spec)
list(APPEND SOURCE
autodial.c
init.c
winsock.c
precomp.h
${CMAKE_CURRENT_BINARY_DIR}/rasadhlp_stubs.c)
add_library(rasadhlp SHARED
${SOURCE}
${CMAKE_CURRENT_BINARY_DIR}/rasadhlp.def)
set_module_type(rasadhlp win32dll)
add_importlibs(rasadhlp ws2_32 msvcrt kernel32 ntdll)
add_pch(rasadhlp precomp.h SOURCE)
add_cd_file(TARGET rasadhlp DESTINATION reactos/system32 FOR all)