mirror of
https://github.com/reactos/reactos.git
synced 2024-11-01 20:32:36 +00:00
3d8d88eaf9
- Remove w32time from hivesys.inf - Implement DllRegisterServer - Add DllUnregisterServer stub - Register w32time at the end of setup phase 2
15 lines
361 B
CMake
15 lines
361 B
CMake
|
|
spec2def(w32time.dll w32time.spec ADD_IMPORTLIB)
|
|
|
|
add_library(w32time MODULE
|
|
w32time.c
|
|
ntpclient.c
|
|
register.c
|
|
w32time.rc
|
|
${CMAKE_CURRENT_BINARY_DIR}/w32time.def)
|
|
|
|
set_module_type(w32time win32dll UNICODE)
|
|
|
|
add_importlibs(w32time ws2_32 advapi32 msvcrt user32 kernel32 ntdll)
|
|
add_cd_file(TARGET w32time DESTINATION reactos/system32 FOR all)
|