reactos/dll/cpl/sysdm/CMakeLists.txt
Arnav Bhatt e58b4a4928
[SYSDM] Edit Environment Variable Dialog Improvement (#3575)
Improve the "Edit Environment Variable" dialog box to be functionally as similar to the one of Windows 10.
CORE-11733

- Improved the existing dialog box. In particular, allow it to be resizable.
- Implemented new "fancy" dialog box for variables containing multiple directories as values,
  showing them in a list.
2021-12-23 00:37:21 +01:00

34 lines
772 B
CMake

spec2def(sysdm.cpl sysdm.spec)
include_directories(
${REACTOS_SOURCE_DIR}/sdk/lib/udmihelp)
list(APPEND SOURCE
advanced.c
environment.c
general.c
hardprof.c
hardware.c
licence.c
smbios.c
startrec.c
sysdm.c
userprofile.c
virtmem.c
precomp.h)
file(GLOB sysdm_rc_deps resources/*.*)
add_rc_deps(sysdm.rc ${sysdm_rc_deps})
add_library(sysdm MODULE
${SOURCE}
sysdm.rc
${CMAKE_CURRENT_BINARY_DIR}/sysdm.def)
set_module_type(sysdm cpl UNICODE)
target_link_libraries(sysdm udmihelp)
add_importlibs(sysdm advapi32 setupapi user32 gdi32 comctl32 comdlg32 msimg32 shell32 shlwapi ole32 powrprof msvcrt kernel32 ntdll)
add_pch(sysdm precomp.h SOURCE)
add_cd_file(TARGET sysdm DESTINATION reactos/system32 FOR all)