mirror of
https://github.com/reactos/reactos.git
synced 2025-03-10 10:14:44 +00:00

- rewrite spec2def macro because 1. cmake gracefully handles def files as source files 2. cmake gracefully handles autogenerated files as source 3. it did not take into account the fact that all shared libraries haven't the .dll extension svn path=/branches/cmake-bringup/; revision=49358
24 lines
518 B
CMake
24 lines
518 B
CMake
|
|
remove_definitions(-D_WIN32_WINNT=0x502)
|
|
add_definitions(-D_WIN32_WINNT=0x600)
|
|
|
|
spec2def(netcfgx.dll netcfgx.spec)
|
|
|
|
add_library(netcfgx SHARED
|
|
netcfgx.c
|
|
classfactory.c
|
|
netcfg_iface.c
|
|
inetcfgcomp_iface.c
|
|
tcpipconf_notify.c
|
|
netcfgx.rc
|
|
${CMAKE_CURRENT_BINARY_DIR}/netcfgx.def)
|
|
|
|
set_module_type(netcfgx win32dll)
|
|
|
|
target_link_libraries(netcfgx
|
|
uuid
|
|
wine)
|
|
|
|
add_importlibs(netcfgx rpcrt4 setupapi advapi32 iphlpapi ole32 user32 comctl32 ws2_32 kernel32 ntdll)
|
|
|
|
add_cab_target(netcfgx 1)
|