reactos/dll/win32/rasadhlp/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

18 lines
484 B
CMake

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