mirror of
https://github.com/reactos/reactos.git
synced 2024-11-10 00:34:39 +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
20 lines
459 B
CMake
20 lines
459 B
CMake
|
|
|
|
|
|
include_directories(${REACTOS_SOURCE_DIR}/include/reactos/wine)
|
|
|
|
add_definitions(-D__WINESRC__)
|
|
|
|
spec2def(query ${CMAKE_CURRENT_SOURCE_DIR}/query.spec ${CMAKE_CURRENT_BINARY_DIR}/query.def)
|
|
|
|
add_library(query SHARED query_main.c)
|
|
|
|
set_target_properties(query PROPERTIES LINK_FLAGS "-Wl,-entry,_DllMain@12")
|
|
|
|
target_link_libraries(query
|
|
${CMAKE_CURRENT_BINARY_DIR}/query.def
|
|
wine
|
|
-luuid
|
|
mingw_common)
|
|
|
|
add_dependencies(query query_def psdk)
|