mirror of
https://github.com/reactos/reactos.git
synced 2024-11-06 22:52:46 +00:00
527f2f9057
* Create a branch for some evul shell experiments. svn path=/branches/shell-experiments/; revision=61927
12 lines
344 B
CMake
12 lines
344 B
CMake
|
|
spec2def(netid.dll netid.spec)
|
|
|
|
list(APPEND SOURCE
|
|
netid.c
|
|
netid.rc
|
|
${CMAKE_CURRENT_BINARY_DIR}/netid.def)
|
|
|
|
add_library(netid SHARED ${SOURCE})
|
|
set_module_type(netid win32dll UNICODE)
|
|
add_importlibs(netid user32 gdi32 comctl32 advapi32 netapi32 msvcrt kernel32 ntdll)
|
|
add_cd_file(TARGET netid DESTINATION reactos/system32 FOR all)
|