mirror of
https://github.com/reactos/reactos.git
synced 2024-11-05 22:26:39 +00:00
9cc4f5ceee
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
16 lines
339 B
CMake
16 lines
339 B
CMake
|
|
set_unicode()
|
|
|
|
spec2def(modemui.dll modemui.spec)
|
|
|
|
list(APPEND SOURCE
|
|
modemui.c
|
|
modemui.rc
|
|
${CMAKE_CURRENT_BINARY_DIR}/modemui_stubs.c
|
|
${CMAKE_CURRENT_BINARY_DIR}/modemui.def)
|
|
|
|
add_library(modemui SHARED ${SOURCE})
|
|
|
|
set_module_type(modemui win32dll)
|
|
add_importlibs(modemui msvcrt kernel32 ntdll)
|
|
add_cab_target(modemui 1)
|