mirror of
https://github.com/reactos/reactos.git
synced 2025-08-05 01:25:41 +00:00
[NTVDM]
- French translation fix. - Add PCH support. - Properly track RC files dependencies. CORE-9806 svn path=/trunk/; revision=69432
This commit is contained in:
parent
cf07fbe7ba
commit
0e9fed957d
2 changed files with 6 additions and 4 deletions
|
@ -67,10 +67,12 @@ list(APPEND SOURCE
|
||||||
utils.c
|
utils.c
|
||||||
vddsup.c
|
vddsup.c
|
||||||
ntvdm.c
|
ntvdm.c
|
||||||
ntvdm.rc
|
ntvdm.h
|
||||||
${CMAKE_CURRENT_BINARY_DIR}/ntvdm.def)
|
${CMAKE_CURRENT_BINARY_DIR}/ntvdm.def)
|
||||||
|
|
||||||
add_executable(ntvdm ${SOURCE})
|
add_rc_deps(ntvdm.rc ${CMAKE_CURRENT_SOURCE_DIR}/res/ntvdm.ico)
|
||||||
|
add_executable(ntvdm ${SOURCE} ntvdm.rc)
|
||||||
|
add_pch(ntvdm ntvdm.h SOURCE)
|
||||||
set_module_type(ntvdm win32cui UNICODE IMAGEBASE 0x0F000000)
|
set_module_type(ntvdm win32cui UNICODE IMAGEBASE 0x0F000000)
|
||||||
target_link_libraries(ntvdm fast486 ${PSEH_LIB})
|
target_link_libraries(ntvdm fast486 ${PSEH_LIB})
|
||||||
add_importlibs(ntvdm user32 gdi32 advapi32 comdlg32 msvcrt kernel32 ntdll)
|
add_importlibs(ntvdm user32 gdi32 advapi32 comdlg32 msvcrt kernel32 ntdll)
|
||||||
|
|
|
@ -13,10 +13,10 @@ BEGIN
|
||||||
IDS_VDM_DUMPMEM_BIN , "Vidage Mémoire (&Binaire)"
|
IDS_VDM_DUMPMEM_BIN , "Vidage Mémoire (&Binaire)"
|
||||||
IDS_VDM_MOUNT_FLOPPY, "Insérer une disquette dans le lecteur %d <%s>..."
|
IDS_VDM_MOUNT_FLOPPY, "Insérer une disquette dans le lecteur %d <%s>..."
|
||||||
IDS_VDM_EJECT_FLOPPY, "Éjecter la disquette du lecteur %d"
|
IDS_VDM_EJECT_FLOPPY, "Éjecter la disquette du lecteur %d"
|
||||||
IDS_VDM_QUIT , "&Quitter la ReactOS VDM"
|
IDS_VDM_QUIT , "&Quitter ReactOS VDM"
|
||||||
END
|
END
|
||||||
|
|
||||||
STRINGTABLE
|
STRINGTABLE
|
||||||
BEGIN
|
BEGIN
|
||||||
IDS_NO_MEDIA, "No media"
|
IDS_NO_MEDIA, "Aucun média"
|
||||||
END
|
END
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue