mirror of
https://github.com/reactos/reactos.git
synced 2024-11-03 05:18:55 +00:00
65ce146169
svn path=/branches/ros-csrss/; revision=57561
22 lines
561 B
CMake
22 lines
561 B
CMake
|
|
include_directories(${REACTOS_SOURCE_DIR}/include/reactos/wine)
|
|
add_definitions(-D__WINESRC__)
|
|
|
|
set_rc_compiler()
|
|
spec2def(rasapi32.dll rasapi32.spec ADD_IMPORTLIB)
|
|
|
|
list(APPEND SOURCE
|
|
rasapi.c
|
|
${CMAKE_CURRENT_BINARY_DIR}/rasapi32_stubs.c
|
|
${CMAKE_CURRENT_BINARY_DIR}/rasapi32.def)
|
|
|
|
add_library(rasapi32 SHARED ${SOURCE})
|
|
set_module_type(rasapi32 win32dll ENTRYPOINT 0 )
|
|
|
|
target_link_libraries(rasapi32 wine)
|
|
|
|
add_importlibs(rasapi32 kernel32 ntdll)
|
|
|
|
add_dependencies(rasapi32 psdk)
|
|
add_cd_file(TARGET rasapi32 DESTINATION reactos/system32 FOR all)
|