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 e5b1bf5 commit 1959648Copy full SHA for 1959648
CMakeLists.txt
@@ -115,8 +115,13 @@ file(GLOB PYC_FILES "${CMAKE_SOURCE_DIR}/Assets/Integrations/Autodesk/maya/scrip
115
IF( PYC_FILES )
116
file(REMOVE ${PYC_FILES})
117
ENDIF()
118
+# remove .meta files from Integrations
119
+file(GLOB_RECURSE META_FILES "${CMAKE_SOURCE_DIR}/Assets/Integrations/*.meta")
120
121
add_custom_command(OUTPUT ${MAYA_INTEGRATION_ZIP_NAME}
122
+ IF(META_FILES)
123
+ COMMAND ${CMAKE_COMMAND} -E remove ${META_FILES}
124
+ ENDIF
125
COMMAND ${CMAKE_COMMAND} -E tar "cfv" ${CMAKE_SOURCE_DIR}/Assets/FbxExporters/${MAYA_INTEGRATION_ZIP_NAME} --format=zip
126
"${CMAKE_SOURCE_DIR}/Assets/Integrations"
127
WORKING_DIRECTORY ${CMAKE_SOURCE_DIR}/Assets
0 commit comments