mirror of
https://github.com/reactos/reactos.git
synced 2025-03-10 18:24:02 +00:00

- Move more dlls with no stubs into using def files instead of spec files. svn path=/branches/cmake-bringup/; revision=49450
15 lines
386 B
CMake
15 lines
386 B
CMake
|
|
add_definitions(-D__WINESRC__)
|
|
include_directories(${REACTOS_SOURCE_DIR}/include/reactos/wine)
|
|
|
|
add_library(xinput9_1_0 SHARED xinput9_1_0_main.c version.rc xinput9_1_0.def)
|
|
|
|
if(NOT MSVC)
|
|
set_source_files_properties(xinput9_1_0.def PROPERTIES EXTERNAL_OBJECT TRUE)
|
|
endif()
|
|
|
|
add_importlibs(xinput9_1_0 kernel32)
|
|
|
|
set_module_type(xinput9_1_0 win32dll)
|
|
|
|
add_cab_target(xinput9_1_0 1)
|