mirror of
https://github.com/reactos/reactos.git
synced 2024-11-01 04:11:30 +00:00
10ce523a2c
This is just an open sourced version of the tool provided by MS along with the driver. It will avoid users fighting with the CLI tool (that was doing the job though ;-)). Looks like that: https://twitter.com/HeisSpiter/status/1072482763348107264 Nota 1: it doesn't have an icon Nota 2: code may be ugly, I'm not a umode guy! ;-)
10 lines
390 B
CMake
10 lines
390 B
CMake
include_directories(${REACTOS_SOURCE_DIR}/modules/rosapps/drivers/vcdrom)
|
|
|
|
list(APPEND SOURCE
|
|
vcdcontroltool.c)
|
|
|
|
add_executable(vcdcontroltool ${SOURCE} vcdcontroltool.rc)
|
|
set_module_type(vcdcontroltool win32gui UNICODE)
|
|
add_importlibs(vcdcontroltool advapi32 user32 gdi32 comctl32 comdlg32 ntdll msvcrt kernel32)
|
|
add_cd_file(TARGET vcdcontroltool DESTINATION reactos/system32 FOR all)
|