reactos/subsystems/ntvdm/CMakeLists.txt
Aleksandar Andrejevic 6a3d90cf53 [NTVDM]
Improve keyboard IRQ performance.
Add debug output to measure number of instructions per second.


svn path=/branches/ntvdm/; revision=59279
2013-06-22 01:41:51 +00:00

18 lines
442 B
CMake

include_directories(${REACTOS_SOURCE_DIR}/include/reactos/libs/softx86)
list(APPEND SOURCE
bios.c
dos.c
emulator.c
hardware.c
ntvdm.c
ntvdm.rc)
add_executable(ntvdm ${SOURCE})
set_module_type(ntvdm win32cui UNICODE)
target_link_libraries(ntvdm softx86 softx87)
add_importlibs(ntvdm msvcrt user32 kernel32 ntdll)
add_dependencies(ntvdm softx86 softx87)
add_cd_file(TARGET ntvdm DESTINATION reactos/system32 FOR all)