reactos/dll/win32/rasadhlp/CMakeLists.txt
Timo Kreuzer 9cc4f5ceee [CMAKE]
Don't automatically add stub files to the sources, instead add them manually where neccessary. also fix a number of spec files to resemble actual state of implementation.

svn path=/branches/cmake-bringup/; revision=50574
2011-01-31 14:20:53 +00:00

20 lines
420 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_cab_target(rasadhlp 1)