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.
12 lines
349 B
CMake
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})
|