mirror of
https://github.com/reactos/reactos.git
synced 2024-11-04 13:52:30 +00:00
20 lines
566 B
CMake
20 lines
566 B
CMake
|
|
remove_definitions(-D_WIN32_WINNT=0x502 -DWINVER=0x502)
|
|
add_definitions(-D_WIN32_WINNT=0x600 -DWINVER=0x600
|
|
-D__NTDLL__
|
|
-D_NTOSKRNL_
|
|
-D_NTSYSTEM_)
|
|
|
|
spec2def(ntdll_vista.dll ntdll_vista.spec ADD_IMPORTLIB)
|
|
|
|
list(APPEND SOURCE
|
|
DllMain.c
|
|
condvar.c
|
|
srw.c
|
|
${CMAKE_CURRENT_BINARY_DIR}/ntdll_vista.def)
|
|
|
|
add_library(ntdll_vista SHARED ${SOURCE})
|
|
set_module_type(ntdll_vista win32dll ENTRYPOINT DllMain 12)
|
|
add_importlibs(ntdll_vista ntdll)
|
|
add_dependencies(ntdll_vista psdk)
|
|
add_cd_file(TARGET ntdll_vista DESTINATION reactos/system32 FOR all)
|