mirror of
https://github.com/reactos/reactos.git
synced 2025-02-23 00:45:24 +00:00
20 lines
523 B
CMake
20 lines
523 B
CMake
|
|
add_definitions(-D__WINESRC__)
|
|
|
|
include_directories(${REACTOS_SOURCE_DIR}/include/reactos/wine)
|
|
|
|
set_rc_compiler()
|
|
|
|
spec2def(faultrep.dll faultrep.spec)
|
|
|
|
list(APPEND SOURCE
|
|
faultrep.c
|
|
${CMAKE_CURRENT_BINARY_DIR}/faultrep_stubs.c
|
|
${CMAKE_CURRENT_BINARY_DIR}/faultrep.def)
|
|
|
|
add_library(faultrep SHARED ${SOURCE})
|
|
|
|
set_module_type(faultrep win32dll)
|
|
target_link_libraries(faultrep wine)
|
|
add_importlibs(faultrep advapi32 msvcrt kernel32 ntdll)
|
|
add_cd_file(TARGET faultrep DESTINATION reactos/system32 FOR all)
|