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

16 lines
341 B
CMake

spec2def(srclient.dll srclient.spec)
list(APPEND SOURCE
srclient_main.c
${CMAKE_CURRENT_BINARY_DIR}/srclient_stubs.c
${CMAKE_CURRENT_BINARY_DIR}/srclient.def)
add_library(srclient SHARED ${SOURCE})
set_entrypoint(srclient 0)
add_importlibs(srclient kernel32 ntdll)
add_dependencies(srclient psdk)
add_cab_target(srclient 1)