[CMAKE]
[reactos.git] / dll / win32 / xinput1_3 / CMakeLists.txt
1
2 add_definitions(-D__WINESRC__)
3 include_directories(${REACTOS_SOURCE_DIR}/include/reactos/wine)
4
5 spec2def(xinput1_3.dll xinput1_3.spec)
6
7 list(APPEND SOURCE
8 xinput1_3_main.c
9 version.rc
10 ${CMAKE_CURRENT_BINARY_DIR}/xinput1_3.def)
11
12 add_library(xinput1_3 SHARED ${SOURCE})
13
14 add_importlib_target(xinput1_3.spec)
15 set_module_type(xinput1_3 win32dll)
16 target_link_libraries(xinput1_3 wine)
17 add_importlibs(xinput1_3 msvcrt kernel32 ntdll)
18 add_cd_file(TARGET xinput1_3 DESTINATION reactos/system32)