[SDK] One step further towards ReactOS source code tree restructure: the sdk folder...
[reactos.git] / reactos / dll / directx / wine / d3dxof / CMakeLists.txt
1
2 add_definitions(-D__WINESRC__)
3 include_directories(${REACTOS_SOURCE_DIR}/sdk/include/reactos/wine)
4 spec2def(d3dxof.dll d3dxof.spec ADD_IMPORTLIB)
5
6 list(APPEND SOURCE
7 d3dxof.c
8 main.c
9 parsing.c
10 d3dxof_private.h)
11
12 add_library(d3dxof SHARED
13 ${SOURCE}
14 mszip.c
15 version.rc
16 ${CMAKE_CURRENT_BINARY_DIR}/d3dxof.def)
17
18 set_module_type(d3dxof win32dll)
19 target_link_libraries(d3dxof dxguid uuid wine)
20 add_importlibs(d3dxof msvcrt kernel32 ntdll)
21 add_pch(d3dxof d3dxof_private.h SOURCE)
22 add_cd_file(TARGET d3dxof DESTINATION reactos/system32 FOR all)