reactos/dll/win32/wlanapi/CMakeLists.txt
Amine Khaldi 0281bf63e6 [CMAKE]
- Improve the unicode situation.
- Apply a consistent formatting.
- Improve the unicode modules we have so far.
- Get rid of some rbuildism.
- Overall improvements.

svn path=/branches/cmake-bringup/; revision=48964
2010-10-02 16:09:32 +00:00

18 lines
472 B
CMake

include_directories(${REACTOS_BINARY_DIR}/include/reactos/idl)
spec2def(wlanapi ${CMAKE_CURRENT_SOURCE_DIR}/wlanapi.spec ${CMAKE_CURRENT_BINARY_DIR}/wlanapi.def)
add_library(wlanapi SHARED main.c)
set_target_properties(wlanapi PROPERTIES LINK_FLAGS "-Wl,-entry,0")
target_link_libraries(wlanapi
${CMAKE_CURRENT_BINARY_DIR}/wlanapi.def
wlansvc_client
wine
pseh)
add_importlibs(wlanapi rpcrt4 kernel32 ntdll)
add_dependencies(wlanapi wlanapi_def psdk)