Codebase list frei0r / 7756f40
New upstream version 3.1.3 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})