mupen64plus-oldsvn/dummy_video/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

12 lines
349 B
CMake

project(dummy_video)
set(DUMMY_VIDEO_SRCS video.cpp)
if(UNIX)
add_definitions(-D__LINUX__)
endif(UNIX)
add_library(dummy_video MODULE ${DUMMY_VIDEO_SRCS})
set_target_properties(dummy_video PROPERTIES PREFIX "") # make sure we get no lib prefix
target_link_libraries(dummy_video)
install(TARGETS dummy_video DESTINATION ${PLUGIN_INSTALL_DIR})