2011-05-16 13:12:07 +00:00
|
|
|
|
2016-04-20 12:36:25 +00:00
|
|
|
include_directories(${REACTOS_SOURCE_DIR}/sdk/include/reactos/wine)
|
2011-05-16 13:12:07 +00:00
|
|
|
add_definitions(-D__WINESRC__)
|
2011-06-26 21:29:55 +00:00
|
|
|
spec2def(pidgen.dll pidgen.spec)
|
2011-05-16 13:12:07 +00:00
|
|
|
|
|
|
|
list(APPEND SOURCE
|
|
|
|
main.c
|
|
|
|
rsrc.rc
|
|
|
|
${CMAKE_CURRENT_BINARY_DIR}/pidgen_stubs.c
|
|
|
|
${CMAKE_CURRENT_BINARY_DIR}/pidgen.def)
|
|
|
|
|
|
|
|
add_library(pidgen SHARED ${SOURCE})
|
|
|
|
set_module_type(pidgen win32dll)
|
|
|
|
target_link_libraries(pidgen wine)
|
|
|
|
add_importlibs(pidgen msvcrt kernel32 ntdll)
|
|
|
|
add_cd_file(TARGET pidgen DESTINATION reactos/system32 FOR all)
|