mirror of
https://github.com/reactos/reactos.git
synced 2024-10-31 11:56:26 +00:00
4f0b8d3db0
svn path=/branches/ntvdm/; revision=59241
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)
|