mirror of
https://github.com/reactos/reactos.git
synced 2024-11-02 21:09:15 +00:00
16 lines
482 B
CMake
16 lines
482 B
CMake
|
|
add_definitions(-D__WINESRC__)
|
|
include_directories(${REACTOS_SOURCE_DIR}/sdk/include/reactos/wine)
|
|
spec2def(mgmtapi.dll mgmtapi.spec)
|
|
|
|
list(APPEND SOURCE
|
|
mgmtapi.c
|
|
${CMAKE_CURRENT_BINARY_DIR}/mgmtapi_stubs.c
|
|
${CMAKE_CURRENT_BINARY_DIR}/mgmtapi.def)
|
|
|
|
add_library(mgmtapi SHARED ${SOURCE})
|
|
set_module_type(mgmtapi win32dll)
|
|
target_link_libraries(mgmtapi wine)
|
|
add_importlibs(mgmtapi msvcrt kernel32 ntdll)
|
|
add_cd_file(TARGET mgmtapi DESTINATION reactos/system32 FOR all)
|