2011-05-16 13:12:07 +00:00
|
|
|
|
2016-11-17 22:44:24 +00:00
|
|
|
remove_definitions(-D_WIN32_WINNT=0x502)
|
|
|
|
add_definitions(-D_WIN32_WINNT=0x600)
|
|
|
|
|
2012-12-22 10:47:06 +00:00
|
|
|
add_definitions(-D__WINESRC__)
|
2016-04-20 12:36:25 +00:00
|
|
|
include_directories(${REACTOS_SOURCE_DIR}/sdk/include/reactos/wine)
|
2011-06-26 21:29:55 +00:00
|
|
|
spec2def(inseng.dll inseng.spec)
|
2011-05-16 13:12:07 +00:00
|
|
|
|
|
|
|
list(APPEND SOURCE
|
2018-03-17 11:48:28 +00:00
|
|
|
icif.c
|
|
|
|
inf.c
|
2011-05-16 13:12:07 +00:00
|
|
|
inseng_main.c
|
2018-03-17 11:48:28 +00:00
|
|
|
precomp.h
|
2011-05-16 13:12:07 +00:00
|
|
|
${CMAKE_CURRENT_BINARY_DIR}/inseng_stubs.c
|
|
|
|
${CMAKE_CURRENT_BINARY_DIR}/inseng.def)
|
|
|
|
|
2019-03-20 13:19:48 +00:00
|
|
|
add_library(inseng MODULE ${SOURCE} guid.c inseng.rc)
|
2011-05-16 13:12:07 +00:00
|
|
|
set_module_type(inseng win32dll)
|
2015-07-19 22:31:17 +00:00
|
|
|
target_link_libraries(inseng uuid wine)
|
2018-03-17 11:48:28 +00:00
|
|
|
add_importlibs(inseng ole32 urlmon kernel32_vista msvcrt kernel32 ntdll)
|
|
|
|
add_pch(inseng precomp.h SOURCE)
|
2011-05-16 13:12:07 +00:00
|
|
|
add_cd_file(TARGET inseng DESTINATION reactos/system32 FOR all)
|