mirror of
https://github.com/reactos/reactos.git
synced 2025-01-12 01:00:06 +00:00
c702cc0d5a
Generalize CMAKE_C_CREATE_SHARED_LIBRARY and remove per project instances. Thanks to Amine for regexxer tool discovery ;) svn path=/branches/cmake-bringup/; revision=48804
25 lines
509 B
CMake
25 lines
509 B
CMake
|
|
|
|
|
|
include_directories(${REACTOS_SOURCE_DIR}/include/reactos/wine)
|
|
|
|
add_definitions(-D__WINESRC__)
|
|
|
|
spec2def(usp10 ${CMAKE_CURRENT_SOURCE_DIR}/usp10.spec ${CMAKE_CURRENT_BINARY_DIR}/usp10.def)
|
|
|
|
add_library(usp10 SHARED
|
|
bidi.c
|
|
usp10.c
|
|
mirror.c
|
|
shape.c
|
|
shaping.c)
|
|
|
|
set_target_properties(usp10 PROPERTIES LINK_FLAGS "-Wl,-entry,_DllMain@12")
|
|
|
|
target_link_libraries(usp10
|
|
${CMAKE_CURRENT_BINARY_DIR}/usp10.def
|
|
wine
|
|
-lgdi32
|
|
mingw_common)
|
|
|
|
add_dependencies(usp10 usp10_def psdk)
|