mirror of
https://github.com/reactos/reactos.git
synced 2024-11-20 14:30:57 +00:00
8 lines
303 B
CMake
8 lines
303 B
CMake
|
|
add_definitions(-D__WINESRC__)
|
|
include_directories(${REACTOS_SOURCE_DIR}/sdk/include/wine)
|
|
add_executable(netsh netsh.c)
|
|
target_link_libraries(netsh wine)
|
|
set_module_type(netsh win32cui UNICODE)
|
|
add_importlibs(netsh msvcrt kernel32 ntdll)
|
|
add_cd_file(TARGET netsh DESTINATION reactos/system32 FOR all)
|