Explorar el Código

adding Core_A and Zone documentation folder to pack build script

Joachim Krech hace 9 años
padre
commit
a92f991b19
Se han modificado 2 ficheros con 11 adiciones y 3 borrados
  1. 1 1
      CMSIS/DoxyGen/Core_A/core_A.dxy
  2. 10 2
      CMSIS/Utilities/gen_pack.bat

+ 1 - 1
CMSIS/DoxyGen/Core_A/core_A.dxy

@@ -843,7 +843,7 @@ EXAMPLE_RECURSIVE      = NO
 # that contain images that are to be included in the documentation (see the
 # \image command).
 
-IMAGE_PATH             = src/images
+IMAGE_PATH             =
 
 # The INPUT_FILTER tag can be used to specify a program that doxygen should
 # invoke to filter for each input file. Doxygen will invoke the filter program

+ 10 - 2
CMSIS/Utilities/gen_pack.bat

@@ -102,7 +102,7 @@ ECHO.
 ECHO Delete previous generated HTML files
 
 PUSHD ..\Documentation
-FOR %%A IN (Core, DAP, Driver, DSP, General, Pack, RTOS, RTOS2, SVD) DO IF EXIST %%A (RMDIR /S /Q %%A)
+FOR %%A IN (Core, Core_A, DAP, Driver, DSP, General, Pack, RTOS, RTOS2, SVD, Zone) DO IF EXIST %%A (RMDIR /S /Q %%A)
 POPD
 
 :: -- Generate HTML Files
@@ -113,6 +113,10 @@ pushd Core
 doxygen core.dxy
 popd
 
+pushd Core_A
+doxygen core_A.dxy
+popd
+
 pushd DAP
 doxygen dap.dxy
 popd
@@ -145,6 +149,10 @@ pushd SVD
 doxygen svd.dxy
 popd
 
+pushd Zone
+doxygen zone.dxy
+popd
+
 :: -- Copy search style sheet
 ECHO.
 ECHO Copy search style sheets
@@ -164,7 +172,7 @@ XCOPY /Q /S /Y ..\Documentation\*.* %RELEASE_PATH%\CMSIS\Documentation\*.*
 
 :: -- Remove generated doxygen files
 PUSHD ..\Documentation
-FOR %%A IN (Core, DAP, Driver, DSP, General, Pack, RTOS, RTOS2, SVD) DO IF EXIST %%A (RMDIR /S /Q %%A)
+FOR %%A IN (Core, Core_A, DAP, Driver, DSP, General, Pack, RTOS, RTOS2, SVD, Zone) DO IF EXIST %%A (RMDIR /S /Q %%A)
 POPD