2011-05-16 13:12:07 +00:00
|
|
|
|
|
|
|
add_definitions(-D__WINESRC__)
|
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
|
|
|
spec2def(softpub.dll softpub.spec)
|
|
|
|
|
2019-03-20 13:19:48 +00:00
|
|
|
add_library(softpub MODULE
|
2014-10-17 23:28:29 +00:00
|
|
|
softpub.rc
|
2011-05-16 13:12:07 +00:00
|
|
|
${CMAKE_CURRENT_BINARY_DIR}/softpub.def)
|
|
|
|
|
2011-09-06 17:31:25 +00:00
|
|
|
set_module_type(softpub win32dll ENTRYPOINT 0 )
|
2011-05-16 13:12:07 +00:00
|
|
|
target_link_libraries(softpub wine)
|
|
|
|
add_importlibs(softpub wintrust)
|
2013-02-17 15:06:22 +00:00
|
|
|
add_cd_file(TARGET softpub DESTINATION reactos/system32 FOR all)
|