1 2include_directories(${REACTOS_SOURCE_DIR}/sdk/include/reactos/wine) 3add_definitions(-D__WINESRC__) 4spec2def(ntdsapi.dll ntdsapi.spec ADD_IMPORTLIB) 5 6list(APPEND SOURCE 7 ntdsapi.c 8 ${CMAKE_CURRENT_BINARY_DIR}/ntdsapi_stubs.c 9 ${CMAKE_CURRENT_BINARY_DIR}/ntdsapi.def) 10 11add_library(ntdsapi MODULE ${SOURCE}) 12set_module_type(ntdsapi win32dll) 13target_link_libraries(ntdsapi wine) 14add_importlibs(ntdsapi user32 msvcrt kernel32 ntdll) 15add_cd_file(TARGET ntdsapi DESTINATION reactos/system32 FOR all) 16