reactos/dll/win32/userenv/CMakeLists.txt

31 lines
651 B
CMake
Raw Normal View History

spec2def(userenv.dll userenv.spec)
list(APPEND SOURCE
desktop.c
directory.c
environment.c
gpolicy.c
misc.c
profile.c
registry.c
setup.c
userenv.c
userenv.rc
${CMAKE_CURRENT_BINARY_DIR}/userenv_stubs.c
${CMAKE_CURRENT_BINARY_DIR}/userenv.def)
add_library(userenv SHARED
${CMAKE_CURRENT_BINARY_DIR}/userenv_precomp.h.gch
${SOURCE})
set_module_type(userenv win32dll)
target_link_libraries(userenv uuid)
add_importlibs(userenv advapi32 user32 msvcrt kernel32 ntdll)
add_pch(userenv ${CMAKE_CURRENT_SOURCE_DIR}/precomp.h ${SOURCE})
add_cab_target(userenv 1)
add_importlib_target(userenv.spec)