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

31 lines
563 B
CMake

add_definitions(
-D__WINESRC__
-D_WINE)
include_directories(${REACTOS_SOURCE_DIR}/include/reactos/wine)
set_rc_compiler()
spec2def(mpr.dll mpr.spec)
list(APPEND SOURCE
auth.c
mpr_main.c
multinet.c
nps.c
pwcache.c
wnet.c
mpr.rc
${CMAKE_CURRENT_BINARY_DIR}/mpr_stubs.c
${CMAKE_CURRENT_BINARY_DIR}/mpr.def)
add_library(mpr SHARED ${SOURCE})
set_module_type(mpr win32dll)
target_link_libraries(mpr wine)
add_importlibs(mpr advapi32 user32 msvcrt kernel32 ntdll)
add_cab_target(mpr 1)
add_importlib_target(mpr.spec)