mirror of
https://github.com/reactos/reactos.git
synced 2025-03-10 10:14:44 +00:00

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