mirror of
https://github.com/reactos/reactos.git
synced 2025-02-25 18:02:05 +00:00
18 lines
489 B
CMake
18 lines
489 B
CMake
|
|
include_directories(${REACTOS_SOURCE_DIR}/include/reactos/idl)
|
|
|
|
add_rpc_files(server ${REACTOS_SOURCE_DIR}/include/reactos/idl/wlansvc.idl)
|
|
|
|
|
|
add_executable(wlansvc
|
|
wlansvc.c
|
|
rpcserver.c
|
|
${CMAKE_CURRENT_BINARY_DIR}/wlansvc_s.c)
|
|
|
|
if(NOT MSVC)
|
|
target_link_libraries(wlansvc ${PSEH_LIB})
|
|
endif()
|
|
|
|
set_module_type(wlansvc win32cui UNICODE)
|
|
add_importlibs(wlansvc advapi32 rpcrt4 iphlpapi msvcrt kernel32 ntdll)
|
|
add_cd_file(TARGET wlansvc DESTINATION reactos/system32 FOR all)
|