[CMAKE]
[reactos.git] / dll / win32 / ntmarta / CMakeLists.txt
1
2 set_unicode()
3
4 add_definitions(-D__WINESRC__)
5
6 remove_definitions(-D_WIN32_WINNT=0x502)
7 add_definitions(-D_WIN32_WINNT=0x600)
8
9 spec2def(ntmarta.dll ntmarta.spec)
10
11 list(APPEND SOURCE
12 ntmarta.c
13 ntmarta.rc
14 ${CMAKE_CURRENT_BINARY_DIR}/ntmarta.def)
15
16 add_library(ntmarta SHARED ${SOURCE})
17
18 set_module_type(ntmarta win32dll)
19
20 add_importlibs(ntmarta
21 user32
22 advapi32
23 msvcrt
24 kernel32
25 ntdll)
26
27 add_cab_target(ntmarta 1)