File tree Expand file tree Collapse file tree 3 files changed +6
-2
lines changed Expand file tree Collapse file tree 3 files changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -49,6 +49,8 @@ void writeUsage()
4949 std::cout << " --config <configfile>: Path to ACMF Configuration XML to use. (mandatory)" << std::endl;
5050 std::cout << " --devpackage <githash>: Short git hash of developer package to use. (mandatory)" << std::endl;
5151 std::cout << " --output: Output package xml file to write. (default: GITHASH_package.xml)" << std::endl;
52+ std::cout << " --serveroutput: Server Output xml file to write. (default: amc_server.xml)" << std::endl;
53+ std::cout << " --tempdir: Temporary directory to write into server path. (default: no custom temp dir)" << std::endl;
5254}
5355
5456
Original file line number Diff line number Diff line change @@ -20,6 +20,7 @@ if not exist "build" (mkdir "build")
2020if not exist " build\Framework" (mkdir " build\Framework" )
2121if not exist " build\Output" (mkdir " build\Output" )
2222if not exist " build\Output\data" (mkdir " build\Output\data" )
23+ if not exist " build\Output\temp" (mkdir " build\Output\temp" )
2324
2425echo " Extracting DevPackages\amcf_win64_%DEVPACKAGE% .zip"
2526
@@ -32,9 +33,9 @@ echo "Found GIT hash %GITHASH%"
3233cd build
3334REM call cmake -G "MinGW Makefiles" ..
3435call cmake ..
35- call cmake --build . --config Release
36+ call cmake --build . --config Release -- /m
3637
37- " .\Framework\create_package_xml.exe" --config " .\Output\%GITHASH% _config.xml" --devpackage %GITHASH% --output " .\Output\%GITHASH% _package.xml" --serveroutput " .\Output\amc_server.xml"
38+ " .\Framework\create_package_xml.exe" --config " .\Output\%GITHASH% _config.xml" --devpackage %GITHASH% --output " .\Output\%GITHASH% _package.xml" --serveroutput " .\Output\amc_server.xml" --tempdir " temp/ "
3839
3940
4041cd Output
Original file line number Diff line number Diff line change @@ -14,6 +14,7 @@ set outputdir=%builddir%\Output
1414if not exist " %builddir% " (mkdir " %builddir% " )
1515if not exist " %outputdir% " (mkdir " %outputdir% " )
1616if not exist " %outputdir% \data" (mkdir " %outputdir% \data" )
17+ if not exist " %outputdir% \temp" (mkdir " %outputdir% \temp" )
1718if not exist " %builddir% \Artifacts" (mkdir " %builddir% \Artifacts" )
1819if not exist " %builddir% \DevPackage" (mkdir " %builddir% \DevPackage" )
1920if not exist " %builddir% \DevPackage\Framework" (mkdir " %builddir% \DevPackage\Framework" )
You can’t perform that action at this time.
0 commit comments