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 24a714d commit 5760a06Copy full SHA for 5760a06
CMakeLists.txt
@@ -143,6 +143,13 @@ endif()
143
144
###########################################################################
145
# Add target for creating a package
146
+
147
+# remove .pyc files that we don't want to ship
148
+file(GLOB PYC_FILES "${CMAKE_SOURCE_DIR}/Assets/FbxExporters/Integrations/Autodesk/maya/scripts/unityOneClick/*.pyc")
149
+IF( PYC_FILES )
150
+ file(REMOVE ${PYC_FILES})
151
+ENDIF()
152
153
add_custom_command(
154
OUTPUT ${PACKAGE_PATH}
155
COMMAND "${CMAKE_COMMAND}" --build . --target install --config Release
0 commit comments