mirror of
https://github.com/reactos/reactos.git
synced 2024-11-10 00:34:39 +00:00
9967209aea
- More work on the dlls. svn path=/branches/cmake-bringup/; revision=49060
16 lines
386 B
CMake
16 lines
386 B
CMake
|
|
include_directories(${REACTOS_SOURCE_DIR}/include/reactos/wine)
|
|
add_definitions(-D__WINESRC__)
|
|
|
|
spec2def(sxs ${CMAKE_CURRENT_SOURCE_DIR}/sxs.spec ${CMAKE_CURRENT_BINARY_DIR}/sxs.def)
|
|
|
|
add_library(sxs SHARED sxs.c)
|
|
|
|
set_entrypoint(sxs 0)
|
|
|
|
target_link_libraries(sxs
|
|
${CMAKE_CURRENT_BINARY_DIR}/sxs.def
|
|
wine)
|
|
|
|
add_importlibs(sxs kernel32 ntdll)
|
|
add_dependencies(sxs sxs_def psdk)
|