reactos/dll/win32/xinput1_1/CMakeLists.txt
Amine Khaldi 2f6d499617 [CMAKE]
- Move more dlls with no stubs into using def files instead of spec files.

svn path=/branches/cmake-bringup/; revision=49450
2010-11-02 20:23:56 +00:00

15 lines
372 B
CMake

add_definitions(-D__WINESRC__)
include_directories(${REACTOS_SOURCE_DIR}/include/reactos/wine)
add_library(xinput1_1 SHARED xinput1_1_main.c version.rc xinput1_1.def)
if(NOT MSVC)
set_source_files_properties(xinput1_1.def PROPERTIES EXTERNAL_OBJECT TRUE)
endif()
set_module_type(xinput1_1 win32dll)
add_importlibs(xinput1_1 kernel32)
add_cab_target(xinput1_1 1)