[NTVDM]
[reactos.git] / subsystems / ntvdm / CMakeLists.txt
1
2 include_directories(${REACTOS_SOURCE_DIR}/include/reactos/libs/softx86)
3
4 list(APPEND SOURCE
5 bios.c
6 dos.c
7 emulator.c
8 ntvdm.c
9 ntvdm.rc)
10
11 add_executable(ntvdm ${SOURCE})
12 set_module_type(ntvdm win32cui UNICODE)
13 target_link_libraries(ntvdm softx86 softx87)
14 add_importlibs(ntvdm msvcrt user32 kernel32)
15 add_dependencies(ntvdm softx86 softx87)
16 add_cd_file(TARGET ntvdm DESTINATION reactos/system32 FOR all)