mirror of
https://github.com/reactos/reactos.git
synced 2025-02-22 08:25:03 +00:00
16 lines
397 B
CMake
16 lines
397 B
CMake
|
|
set_unicode()
|
|
|
|
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)
|
|
|
|
add_importlib_target(${CMAKE_CURRENT_BINARY_DIR}/getuname.def)
|
|
set_module_type(getuname win32dll)
|
|
add_importlibs(getuname msvcrt kernel32 ntdll)
|
|
add_cab_target(getuname 1)
|