Update upstream source from tag 'upstream/3.1.3'
Update to upstream version '3.1.3'
with Debian dir c5ce728ea8b930554693ed11fc4f30fdca94c514
IOhannes m zmölnig (Debian/GNU)
2 months ago
| 4 | 4 | set(CMAKE_POSITION_INDEPENDENT_CODE ON) |
| 5 | 5 | |
| 6 | 6 | # Compile as shared library |
| 7 | add_library(camerashake MODULE camerashake.cpp) | |
| 7 | set (TARGET camerashake) | |
| 8 | add_library(${TARGET} MODULE camerashake.cpp) | |
| 8 | 9 | |
| 9 | 10 | # Remove the "lib" prefix so that Frei0r can read it correctly |
| 10 | set_target_properties(camerashake PROPERTIES PREFIX "") | |
| 11 | set_target_properties(${TARGET} PROPERTIES PREFIX "") | |
| 12 | ||
| 13 | install (TARGETS ${TARGET} LIBRARY DESTINATION ${LIBDIR}) |