mupen64plus-oldsvn/dummy_audio/CMakeLists.txt
Louai Al-Khanji 610edfabfc add cmake files. glide64 and blight_input do not currently build,
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.
2008-04-07 03:29:31 +00:00

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})