reactos/subsystems/ntvdm/CMakeLists.txt
Aleksandar Andrejevic b44c5d3a6f [NTVDM]
Implement 8259 Programmable Interrupt Controller emulation.


svn path=/branches/ntvdm/; revision=59268
2013-06-20 19:00:07 +00:00

18 lines
436 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)
add_dependencies(ntvdm softx86 softx87)
add_cd_file(TARGET ntvdm DESTINATION reactos/system32 FOR all)