reactos/base/applications/runas/CMakeLists.txt
Eric Kohl 5811da1ec5 [RUNAS] Initial version of the runas utility
- Work in progress
- Please do not translate it yet because the resources will change significantly
2022-02-13 21:45:10 +01:00

9 lines
307 B
CMake

include_directories(${REACTOS_SOURCE_DIR}/sdk/lib/conutils)
add_executable(runas runas.c runas.rc)
set_module_type(runas win32cui UNICODE)
target_link_libraries(runas conutils ${PSEH_LIB})
add_importlibs(runas advapi32 msvcrt kernel32 ntdll)
add_cd_file(TARGET runas DESTINATION reactos/system32 FOR all)