2014-10-17 23:28:29 +00:00
|
|
|
|
2011-05-16 13:12:07 +00:00
|
|
|
list(APPEND INF_FILES
|
|
|
|
acpi.inf
|
|
|
|
audio.inf
|
|
|
|
battery.inf
|
|
|
|
bda.inf
|
2012-03-27 08:47:46 +00:00
|
|
|
bth.inf
|
2019-08-05 19:18:23 +00:00
|
|
|
btrfs.inf
|
2012-12-24 14:29:54 +00:00
|
|
|
c_image.inf
|
2011-05-16 13:12:07 +00:00
|
|
|
cdrom.inf
|
|
|
|
cpu.inf
|
2011-05-31 23:19:07 +00:00
|
|
|
disk.inf
|
2011-05-16 13:12:07 +00:00
|
|
|
display.inf
|
|
|
|
fdc.inf
|
2013-11-30 10:22:29 +00:00
|
|
|
flpydisk.inf
|
2011-08-15 05:39:53 +00:00
|
|
|
hal.inf
|
2015-06-29 17:10:04 +00:00
|
|
|
hdaudbus.inf
|
2011-05-16 13:12:07 +00:00
|
|
|
hdc.inf
|
2012-01-05 04:05:10 +00:00
|
|
|
input.inf
|
2011-05-16 13:12:07 +00:00
|
|
|
keyboard.inf
|
|
|
|
ks.inf
|
|
|
|
kscaptur.inf
|
2012-03-21 03:01:31 +00:00
|
|
|
legcydrv.inf
|
2011-05-16 13:12:07 +00:00
|
|
|
machine.inf
|
2012-03-12 03:15:34 +00:00
|
|
|
monitor.inf
|
2011-05-16 13:12:07 +00:00
|
|
|
msmouse.inf
|
|
|
|
NET_NIC.inf
|
|
|
|
netamd.inf
|
2018-05-18 22:23:45 +00:00
|
|
|
nete1000.inf
|
2011-05-16 13:12:07 +00:00
|
|
|
netisa.inf
|
2013-07-05 04:18:32 +00:00
|
|
|
netrtl.inf
|
2011-05-16 13:12:07 +00:00
|
|
|
netrtpnt.inf
|
|
|
|
nettcpip.inf
|
|
|
|
ports.inf
|
|
|
|
scsi.inf
|
2013-05-29 19:35:35 +00:00
|
|
|
shortcuts.inf
|
2011-06-04 08:03:51 +00:00
|
|
|
unknown.inf
|
2011-05-16 13:12:07 +00:00
|
|
|
usb.inf
|
|
|
|
usbport.inf
|
|
|
|
usbstor.inf
|
2015-02-15 09:03:08 +00:00
|
|
|
wdmaudio.inf
|
2015-03-27 15:43:19 +00:00
|
|
|
wmiacpi.inf
|
2014-10-17 23:28:29 +00:00
|
|
|
xboxdisp.inf)
|
2011-05-16 13:12:07 +00:00
|
|
|
|
2015-02-15 15:42:00 +00:00
|
|
|
list(APPEND UTF8_INF_FILES
|
|
|
|
defltws.inf
|
|
|
|
font.inf
|
|
|
|
intl.inf
|
|
|
|
layout.inf)
|
|
|
|
|
2011-05-16 13:12:07 +00:00
|
|
|
foreach(item ${INF_FILES})
|
2015-02-15 15:42:00 +00:00
|
|
|
set(_converted_item ${CMAKE_CURRENT_BINARY_DIR}/${item})
|
|
|
|
set(_source_item ${CMAKE_CURRENT_SOURCE_DIR}/${item})
|
|
|
|
add_custom_command(OUTPUT "${_converted_item}"
|
|
|
|
COMMAND native-utf16le "${_source_item}" "${_converted_item}"
|
|
|
|
DEPENDS native-utf16le "${_source_item}")
|
|
|
|
add_cd_file(TARGET converted_inf_files FILE ${_converted_item} DESTINATION reactos/inf FOR all)
|
|
|
|
list(APPEND _converted_inf_files ${_converted_item})
|
|
|
|
endforeach(item)
|
|
|
|
|
|
|
|
add_custom_target(converted_inf_files DEPENDS ${_converted_inf_files})
|
|
|
|
|
|
|
|
foreach(item ${UTF8_INF_FILES})
|
2011-05-16 13:12:07 +00:00
|
|
|
add_cd_file(FILE "${CMAKE_CURRENT_SOURCE_DIR}/${item}" DESTINATION reactos/inf FOR all)
|
|
|
|
endforeach(item)
|
|
|
|
|
2013-02-17 15:06:22 +00:00
|
|
|
add_cd_file(FILE ${CMAKE_CURRENT_SOURCE_DIR}/syssetup.inf DESTINATION reactos/inf FOR all)
|