2011-05-16 13:12:07 +00:00
|
|
|
|
2013-06-22 14:44:56 +00:00
|
|
|
set_cpp(WITH_RUNTIME)
|
2011-05-16 13:12:07 +00:00
|
|
|
|
2014-02-08 18:13:52 +00:00
|
|
|
list(APPEND SOURCE
|
2011-05-16 13:12:07 +00:00
|
|
|
audio_format.cpp
|
|
|
|
audio_membuffer.cpp
|
2014-02-08 17:44:38 +00:00
|
|
|
#audio_producer.cpp
|
|
|
|
#audio_receiver.cpp
|
2011-05-16 13:12:07 +00:00
|
|
|
audio_resampler_acm.cpp
|
|
|
|
audio_wavein.cpp
|
|
|
|
audio_waveout.cpp
|
|
|
|
sndrec32.cpp
|
2014-02-08 18:13:52 +00:00
|
|
|
stdafx.h)
|
2011-05-16 13:12:07 +00:00
|
|
|
|
2015-06-17 17:20:29 +00:00
|
|
|
file(GLOB sndrec32_rc_deps resources/*.*)
|
|
|
|
add_rc_deps(rsrc.rc ${sndrec32_rc_deps})
|
2014-02-08 18:13:52 +00:00
|
|
|
add_executable(sndrec32 ${SOURCE} rsrc.rc)
|
2011-09-03 19:11:44 +00:00
|
|
|
set_module_type(sndrec32 win32gui UNICODE)
|
2014-10-17 23:28:29 +00:00
|
|
|
add_importlibs(sndrec32 winmm user32 msacm32 comctl32 comdlg32 gdi32 shell32 msvcrt kernel32)
|
2014-02-08 18:13:52 +00:00
|
|
|
add_pch(sndrec32 stdafx.h SOURCE)
|
2011-05-16 13:12:07 +00:00
|
|
|
add_cd_file(TARGET sndrec32 DESTINATION reactos/system32 FOR all)
|