2014-09-29 17:24:32 +00:00
|
|
|
|
|
|
|
add_definitions(-D__WINESRC__)
|
2016-04-20 12:36:25 +00:00
|
|
|
include_directories(${REACTOS_SOURCE_DIR}/sdk/include/reactos/wine)
|
2015-07-21 23:33:10 +00:00
|
|
|
spec2def(d3drm.dll d3drm.spec ADD_IMPORTLIB)
|
2014-09-29 17:24:32 +00:00
|
|
|
|
|
|
|
list(APPEND SOURCE
|
|
|
|
d3drm.c
|
|
|
|
d3drm_main.c
|
|
|
|
device.c
|
|
|
|
face.c
|
|
|
|
frame.c
|
|
|
|
light.c
|
|
|
|
material.c
|
|
|
|
math.c
|
|
|
|
meshbuilder.c
|
|
|
|
texture.c
|
|
|
|
viewport.c
|
2018-03-08 12:17:38 +00:00
|
|
|
precomp.h)
|
2014-09-29 17:24:32 +00:00
|
|
|
|
2019-03-20 13:19:48 +00:00
|
|
|
add_library(d3drm MODULE
|
2014-09-29 17:24:32 +00:00
|
|
|
${SOURCE}
|
|
|
|
version.rc
|
|
|
|
${CMAKE_CURRENT_BINARY_DIR}/d3drm_stubs.c
|
|
|
|
${CMAKE_CURRENT_BINARY_DIR}/d3drm.def)
|
|
|
|
|
|
|
|
set_module_type(d3drm win32dll UNICODE)
|
|
|
|
target_link_libraries(d3drm dxguid uuid wine)
|
2015-11-24 10:43:48 +00:00
|
|
|
add_importlibs(d3drm ddraw d3dxof msvcrt kernel32 ntdll)
|
2018-03-08 12:17:38 +00:00
|
|
|
add_pch(d3drm precomp.h SOURCE)
|
2014-09-29 17:24:32 +00:00
|
|
|
add_cd_file(TARGET d3drm DESTINATION reactos/system32 FOR all)
|