mirror of
https://github.com/mupen64plus/mupen64plus-oldsvn.git
synced 2025-04-02 10:52:35 -04:00
glide64 because there is no asm support yet, blight_input because its build mechanism is very hairy as of now. no special compilation options like debugger and co are added yet. no uninstall support yet.
8 lines
292 B
CMake
8 lines
292 B
CMake
project(dummy_audio)
|
|
|
|
set(DUMMY_AUDIO_SRCS audio.c)
|
|
|
|
add_library(dummy_audio MODULE ${DUMMY_AUDIO_SRCS})
|
|
set_target_properties(dummy_audio PROPERTIES PREFIX "") # make sure we get no lib prefix
|
|
target_link_libraries(dummy_audio)
|
|
install(TARGETS dummy_audio DESTINATION ${PLUGIN_INSTALL_DIR})
|