[WLANCONF]
[reactos.git] / reactos / base / applications / network / wlanconf / CMakeLists.txt
1
2 include_directories(
3 BEFORE include
4 ${REACTOS_SOURCE_DIR}/include/reactos/drivers/ndisuio)
5 add_executable(wlanconf wlanconf.c wlanconf.rc)
6
7 # FIXME: http://www.cmake.org/Bug/view.php?id=12998
8 if(NOT MSVC)
9 #add_target_compile_flags(wlanconf "-Wno-format")
10 set_source_files_properties(wlanconf.c PROPERTIES COMPILE_FLAGS "-Wno-format")
11 endif()
12
13 set_module_type(wlanconf win32cui)
14 add_importlibs(wlanconf msvcrt user32 iphlpapi kernel32)
15 add_cd_file(TARGET wlanconf DESTINATION reactos/system32 FOR all)