mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-02-04 03:40:14 +00:00
12 lines
183 B
CMake
12 lines
183 B
CMake
|
project(SoundTest)
|
||
|
|
||
|
# local files
|
||
|
|
||
|
# Main executable
|
||
|
add_executable(sound_test main.cpp ${OENGINE_SOUND})
|
||
|
|
||
|
target_link_libraries(sound_test
|
||
|
${OPENAL_LIBRARY}
|
||
|
${AUDIERE_LIBRARY}
|
||
|
)
|