mirror of
https://github.com/reactos/reactos.git
synced 2024-11-10 00:34:39 +00:00
e7caf66239
- Improve the IDL macro, along with some dependencies. svn path=/branches/cmake-bringup/; revision=48965
17 lines
468 B
CMake
17 lines
468 B
CMake
|
|
add_definitions(-D__WINESRC__)
|
|
include_directories(${REACTOS_SOURCE_DIR}/include/reactos/wine)
|
|
|
|
spec2def(xmllite ${CMAKE_CURRENT_SOURCE_DIR}/xmllite.spec ${CMAKE_CURRENT_BINARY_DIR}/xmllite.def)
|
|
|
|
add_library(xmllite SHARED reader.c xmllite_main.c)
|
|
|
|
set_module_type(xmllite win32dll)
|
|
|
|
target_link_libraries(xmllite
|
|
${CMAKE_CURRENT_BINARY_DIR}/xmllite.def
|
|
wine)
|
|
|
|
add_importlibs(xmllite kernel32 ntdll)
|
|
|
|
add_dependencies(xmllite xmllite_def psdk buildno_header)
|