mirror of
https://github.com/reactos/reactos.git
synced 2024-11-11 01:04:11 +00:00
4efda499f7
Jerome Gardou: - Add STLport 5.2.1 (yes, STLport, the c++ stl implementation) to build. For now, it works only in user mode. - Link some c++ executables to it - sol.exe : one step towards a complete and modern OS. - Dedicated to Amine for his patience and his help. - Might Break Things! (tm) svn path=/branches/cmake-bringup/; revision=49046
17 lines
372 B
CMake
17 lines
372 B
CMake
|
|
add_executable(sndrec32
|
|
audio_format.cpp
|
|
audio_membuffer.cpp
|
|
audio_producer.cpp
|
|
audio_receiver.cpp
|
|
audio_resampler_acm.cpp
|
|
audio_wavein.cpp
|
|
audio_waveout.cpp
|
|
sndrec32.cpp
|
|
rsrc.rc)
|
|
|
|
target_link_libraries(sndrec32 stlport)
|
|
|
|
set_module_type(sndrec32 win32gui)
|
|
|
|
add_importlibs(sndrec32 winmm user32 msacm32 comctl32 comdlg32 gdi32 msvcrt)
|