We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5915bb8 commit 6216ef3Copy full SHA for 6216ef3
app/CMakeLists.txt
@@ -8,3 +8,4 @@ add_subdirectory(avProcessor)
8
add_subdirectory(pyProcessor)
9
add_subdirectory(pyThumbnail)
10
add_subdirectory(pyRewrap)
11
+add_subdirectory(pyConcat)
app/pyConcat/CMakeLists.txt
@@ -0,0 +1,12 @@
1
+### python/pyConcat
2
+
3
+# Install app
4
+install(
5
+ FILES "pyconcat.py"
6
+ PERMISSIONS OWNER_EXECUTE OWNER_WRITE OWNER_READ GROUP_EXECUTE GROUP_READ WORLD_READ WORLD_EXECUTE
7
+ DESTINATION "bin/python"
+)
+if(UNIX)
+ install( CODE "EXECUTE_PROCESS(COMMAND ln -sf python/pyconcat.py ${CMAKE_INSTALL_PREFIX}/bin/pyconcat)" )
12
+endif(UNIX)
0 commit comments