reactos/modules/rosapps/applications/cmdutils/vcdcli/CMakeLists.txt
Pierre Schweitzer 581f32b8c2
[VCDCLI] Implement a tool that allows managing vcdrom class driver.
It allows you managing virtual drives, mounting images, ejecting images, and so on.

It will load the driver when required.

It's less features complete that the MS GUI implementation.
I'll implement them later on, it can be quickly done.
What's missing: UDF/Joliet suppr and persistent mounts
2017-12-03 18:17:57 +01:00

7 lines
274 B
CMake

include_directories(${REACTOS_SOURCE_DIR}/modules/rosapps/drivers/vcdrom)
add_executable(vcdcli vcdcli vcdcli.rc)
set_module_type(vcdcli win32cui UNICODE)
add_importlibs(vcdcli advapi32 msvcrt kernel32 ntdll)
add_cd_file(TARGET vcdcli DESTINATION reactos/system32 FOR all)