reactos/dll/directx/wine/d3d9/CMakeLists.txt
Jérôme Gardou 4ee1da42f1 [CMAKE]
- rewrite spec2def macro because
1. cmake gracefully handles def files as source files
2. cmake gracefully handles autogenerated files as source
3. it did not take into account the fact that all shared libraries haven't the .dll extension

svn path=/branches/cmake-bringup/; revision=49358
2010-10-30 16:08:19 +00:00

44 lines
730 B
CMake

set_unicode()
add_definitions(-D__WINESRC__)
add_definitions(-DUSE_WIN32_OPENGL)
include_directories(${REACTOS_SOURCE_DIR}/include/reactos/wine)
spec2def(d3d9.dll d3d9.spec)
add_library(d3d9 SHARED
cubetexture.c
d3d9_main.c
device.c
directx.c
indexbuffer.c
pixelshader.c
query.c
stateblock.c
surface.c
swapchain.c
texture.c
vertexbuffer.c
vertexdeclaration.c
vertexshader.c
volume.c
volumetexture.c
version.rc
${CMAKE_CURRENT_BINARY_DIR}/d3d9.def)
set_module_type(d3d9 win32dll)
target_link_libraries(d3d9
uuid
wine)
add_importlibs(d3d9
user32
gdi32
advapi32
wined3d)
add_dependencies(d3d9 wineheaders)
add_cab_target(d3d9 1)