mirror of
https://github.com/reactos/reactos.git
synced 2024-11-11 01:04:11 +00:00
b69be78e88
- Add audio_test, kmixer, wdmaud, sysaudio and ntvdm to build. By Alexey Komarov. svn path=/branches/cmake-bringup/; revision=48947
17 lines
290 B
CMake
17 lines
290 B
CMake
|
|
include_directories(.)
|
|
|
|
set_rc_compiler()
|
|
|
|
add_executable(ntvdm
|
|
ntvdm.c
|
|
ntvdm.rc)
|
|
|
|
set_module_type(ntvdm win32cui)
|
|
|
|
target_link_libraries(ntvdm
|
|
mingw_main
|
|
mingw_common)
|
|
|
|
add_importlibs(ntvdm ntdll user32 gdi32 advapi32 kernel32 msvcrt)
|
|
add_dependencies(ntvdm ndk bugcodes)
|