mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-01-24 09:53:51 +00:00
11 lines
187 B
CMake
11 lines
187 B
CMake
project(SoundTest)
|
|
|
|
# local files
|
|
|
|
# Main executable
|
|
add_executable(sound_test main.cpp ${OENGINE_SOUND})
|
|
|
|
target_link_libraries(sound_test
|
|
${OPENAL_LIBRARY}
|
|
${SOUND_INPUT_LIBRARY}
|
|
)
|