mirror of
https://github.com/reactos/reactos.git
synced 2024-11-09 08:08:38 +00:00
f4cc19c36a
- Improve several modules. svn path=/branches/cmake-bringup/; revision=50055
20 lines
411 B
CMake
20 lines
411 B
CMake
|
|
include_directories(${REACTOS_SOURCE_DIR}/include/reactos/wine)
|
|
|
|
set_rc_compiler()
|
|
|
|
spec2def(icmp.dll icmp.spec)
|
|
|
|
list(APPEND SOURCE
|
|
icmp_main.c
|
|
icmp.rc
|
|
${CMAKE_CURRENT_BINARY_DIR}/icmp.def)
|
|
|
|
add_library(icmp SHARED ${SOURCE})
|
|
|
|
set_module_type(icmp win32dll)
|
|
|
|
target_link_libraries(icmp wine)
|
|
add_importlibs(icmp ws2_32 msvcrt kernel32 ntdll)
|
|
add_importlib_target(icmp.spec)
|
|
add_cab_target(icmp 1)
|