mirror of
https://github.com/reactos/reactos.git
synced 2024-11-01 12:26:32 +00:00
fc16259faf
Sync/Port: Metafile code from wine. Patches by Jacek Caban, Daniel Lehman, Zhiyi Zhang. Gabriel Ivancescu, Michael Stefaniuc, Francois Gouget, Nikolay Sivov Dmitry Timoshkov, Andrew EiKum, Piotr Caban and Alexandre Julliard. This commit is dedicated to George Bisoc!
19 lines
350 B
CMake
19 lines
350 B
CMake
|
|
include_directories(
|
|
${REACTOS_SOURCE_DIR}/sdk/include/reactos/wine
|
|
${REACTOS_SOURCE_DIR}/win32ss/include
|
|
../include
|
|
.)
|
|
|
|
list(APPEND SOURCE
|
|
emfdc.c
|
|
emfdrv.c
|
|
enhmetafile.c
|
|
metadc.c
|
|
metafile.c
|
|
rosglue.c)
|
|
|
|
add_library(winegdi ${SOURCE})
|
|
target_link_libraries(winegdi PRIVATE pseh)
|
|
add_dependencies(winegdi psdk)
|