[DINPUT8]
authorAmine Khaldi <amine.khaldi@reactos.org>
Sun, 6 Oct 2013 16:34:03 +0000 (16:34 +0000)
committerAmine Khaldi <amine.khaldi@reactos.org>
Sun, 6 Oct 2013 16:34:03 +0000 (16:34 +0000)
* Speedup build.

svn path=/trunk/; revision=60564

reactos/dll/directx/wine/dinput8/CMakeLists.txt

index 375a6f5..804d97b 100644 (file)
@@ -1,17 +1,14 @@
 
-remove_definitions(-D_WIN32_WINNT=0x502)
-add_definitions(-D_WIN32_WINNT=0x600)
-
 add_definitions(-D__WINESRC__)
 include_directories(${REACTOS_SOURCE_DIR}/include/reactos/wine)
 spec2def(dinput8.dll dinput8.spec ADD_IMPORTLIB)
 
-add_library(dinput8 SHARED
+list(APPEND SOURCE
     dinput8_main.c
-    version.rc
     ${CMAKE_CURRENT_BINARY_DIR}/dinput8.def)
 
-set_module_type(dinput8 win32dll UNICODE)
+add_library(dinput8 SHARED ${SOURCE} version.rc)
+set_module_type(dinput8 win32dll)
 target_link_libraries(dinput8 dxguid uuid wine)
-add_importlibs(dinput8 dinput ole32 advapi32 msvcrt kernel32 ntdll)
+add_importlibs(dinput8 ole32 msvcrt kernel32 ntdll)
 add_cd_file(TARGET dinput8 DESTINATION reactos/system32 FOR all)