mirror of
https://github.com/reactos/reactos.git
synced 2024-11-01 20:32:36 +00:00
9393fc320e
Excluded: 3rd-party code (incl. wine) and most of the win32ss.
17 lines
553 B
CMake
17 lines
553 B
CMake
|
|
add_definitions(-D__WINESRC__ -D__ROS_LONG64__)
|
|
include_directories(${REACTOS_SOURCE_DIR}/sdk/include/reactos/wine)
|
|
spec2def(inetmib1.dll inetmib1.spec)
|
|
|
|
list(APPEND SOURCE
|
|
main.c
|
|
${CMAKE_CURRENT_BINARY_DIR}/inetmib1_stubs.c
|
|
${CMAKE_CURRENT_BINARY_DIR}/inetmib1.def)
|
|
|
|
add_library(inetmib1 MODULE ${SOURCE})
|
|
set_module_type(inetmib1 win32dll)
|
|
target_link_libraries(inetmib1 wine)
|
|
add_delay_importlibs(inetmib1 iphlpapi)
|
|
add_importlibs(inetmib1 snmpapi msvcrt kernel32 ntdll)
|
|
add_cd_file(TARGET inetmib1 DESTINATION reactos/system32 FOR all)
|