Codebase list frei0r / ab87dff
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
1 changed file(s) with 5 addition(s) and 2 deletion(s). Raw diff Collapse all Expand all
44 set(CMAKE_POSITION_INDEPENDENT_CODE ON)
55
66 # Compile as shared library
7 add_library(camerashake MODULE camerashake.cpp)
7 set (TARGET camerashake)
8 add_library(${TARGET} MODULE camerashake.cpp)
89
910 # 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})