reactos/base/services/wlansvc/CMakeLists.txt
Victor Perevertkin 7e069ccdb2
[CMAKE] Replace custom functions to built-in ones
add_target_compile_definitions -> target_compile_definitions
add_target_compile_flags -> target_compile_options
add_target_include_directories -> target_include_directories
2020-04-16 15:59:38 +03:00

25 lines
686 B
CMake

include_directories(${REACTOS_SOURCE_DIR}/sdk/include/reactos/idl)
add_rpc_files(server ${REACTOS_SOURCE_DIR}/sdk/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} wlansvc.rc)
if(USE_CLANG_CL)
target_compile_options(wlansvc PRIVATE "-Wno-cast-calling-convention")
endif()
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)