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

21 lines
365 B
CMake

spec2def(rasdlg.dll rasdlg.spec)
list(APPEND SOURCE
rasdlg.c
rasdlg.rc
${CMAKE_CURRENT_BINARY_DIR}/rasdlg_stubs.c
${CMAKE_CURRENT_BINARY_DIR}/rasdlg.def)
add_library(rasdlg SHARED ${SOURCE})
set_module_type(rasdlg win32dll)
target_link_libraries(rasdlg
wine
uuid)
add_importlibs(rasdlg msvcrt kernel32 ntdll)
add_cab_target(rasdlg 1)