Remove my DESTDIR hack from the cmake build. It turns out this is built into cmake and works in the same way it does with the gnu autotools. Use it in the standard way with "make DESTDIR=/desired/location install".

git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@6382 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
Glenn Rice
2010-11-11 15:50:52 +00:00
parent d4b72eaae5
commit c6d95c9087
5 changed files with 15 additions and 13 deletions

View File

@ -37,5 +37,5 @@ endif()
add_library(Plugin_VideoOGL SHARED ${SRCS})
target_link_libraries(Plugin_VideoOGL ${LIBS})
install(TARGETS Plugin_VideoOGL
LIBRARY DESTINATION ${DESTDIR}${plugindir}
RUNTIME DESTINATION ${DESTDIR}${plugindir})
LIBRARY DESTINATION ${plugindir}
RUNTIME DESTINATION ${plugindir})