[SDK] One step further towards ReactOS source code tree restructure: the sdk folder...
[reactos.git] / reactos / dll / win32 / ntdsapi / CMakeLists.txt
1
2 include_directories(${REACTOS_SOURCE_DIR}/sdk/include/reactos/wine)
3 add_definitions(-D__WINESRC__)
4 spec2def(ntdsapi.dll ntdsapi.spec ADD_IMPORTLIB)
5
6 list(APPEND SOURCE
7 ntdsapi.c
8 ${CMAKE_CURRENT_BINARY_DIR}/ntdsapi_stubs.c
9 ${CMAKE_CURRENT_BINARY_DIR}/ntdsapi.def)
10
11 add_library(ntdsapi SHARED ${SOURCE})
12 set_module_type(ntdsapi win32dll)
13 target_link_libraries(ntdsapi wine)
14 add_importlibs(ntdsapi user32 msvcrt kernel32 ntdll)
15 add_cd_file(TARGET ntdsapi DESTINATION reactos/system32 FOR all)