mirror of
https://github.com/reactos/reactos.git
synced 2024-11-09 16:20:37 +00:00
91f3191275
- refactor a bit add_cd_file for more flexibility. Add FOR argument for specifying target cd images. svn path=/branches/cmake-bringup/; revision=51749
21 lines
350 B
CMake
21 lines
350 B
CMake
|
|
set_unicode()
|
|
|
|
add_executable(vmwinst vmwinst.c vmwinst.rc)
|
|
|
|
target_link_libraries(vmwinst ${PSEH_LIB})
|
|
|
|
set_module_type(vmwinst win32gui)
|
|
add_importlibs(vmwinst
|
|
advapi32
|
|
comctl32
|
|
comdlg32
|
|
newdev
|
|
user32
|
|
setupapi
|
|
shell32
|
|
msvcrt
|
|
kernel32
|
|
ntdll)
|
|
|
|
add_cd_file(TARGET vmwinst DESTINATION reactos/system32 FOR all)
|