mirror of
https://github.com/reactos/reactos.git
synced 2024-10-31 20:02:55 +00:00
4f0b8d3db0
svn path=/branches/ntvdm/; revision=59241
25 lines
509 B
CMake
25 lines
509 B
CMake
|
|
include_directories(${REACTOS_SOURCE_DIR}/include/reactos/wine)
|
|
add_definitions(
|
|
-D__WINESRC__
|
|
-DCOM_NO_WINDOWS_H)
|
|
|
|
spec2def(query.dll query.spec)
|
|
|
|
list(APPEND SOURCE
|
|
query_main.c
|
|
${CMAKE_CURRENT_BINARY_DIR}/query_stubs.c
|
|
${CMAKE_CURRENT_BINARY_DIR}/query.def)
|
|
|
|
add_library(query SHARED ${SOURCE})
|
|
|
|
set_module_type(query win32dll)
|
|
|
|
target_link_libraries(query
|
|
wine
|
|
uuid)
|
|
|
|
add_importlibs(query msvcrt kernel32 ntdll)
|
|
|
|
add_cd_file(TARGET query DESTINATION reactos/system32 FOR all)
|