reactos/base/services/wlansvc/CMakeLists.txt
Amine Khaldi ddb3d908c9 * Sync up to trunk HEAD (r62285). Branch guys deserve the significant speedups too ;)
svn path=/branches/shell-experiments/; revision=62286
2014-02-22 10:31:26 +00:00

22 lines
567 B
CMake

include_directories(${REACTOS_SOURCE_DIR}/include/reactos/idl)
add_rpc_files(server ${REACTOS_SOURCE_DIR}/include/reactos/idl/wlansvc.idl)
list(APPEND SOURCE
wlansvc.c
rpcserver.c
precomp.h
${CMAKE_CURRENT_BINARY_DIR}/wlansvc_s.c)
add_executable(wlansvc ${SOURCE})
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_pch(wlansvc precomp.h SOURCE)
add_cd_file(TARGET wlansvc DESTINATION reactos/system32 FOR all)