mirror of
https://github.com/reactos/reactos.git
synced 2024-11-02 21:09:15 +00:00
65ce146169
svn path=/branches/ros-csrss/; revision=57561
16 lines
368 B
CMake
16 lines
368 B
CMake
|
|
|
|
include_directories(${REACTOS_SOURCE_DIR}/include/reactos/wine)
|
|
|
|
spec2def(getuname.dll getuname.spec)
|
|
|
|
add_library(getuname SHARED
|
|
getuname.c
|
|
getuname.rc
|
|
${CMAKE_CURRENT_BINARY_DIR}/getuname.def)
|
|
|
|
|
|
set_module_type(getuname win32dll UNICODE)
|
|
add_importlibs(getuname msvcrt kernel32 ntdll)
|
|
add_cd_file(TARGET getuname DESTINATION reactos/system32 FOR all)
|