Skip to content

Commit

Permalink
fmk - updating makeZip
Browse files Browse the repository at this point in the history
  • Loading branch information
fmckenna committed May 13, 2024
1 parent 618594e commit 94ebe9e
Showing 1 changed file with 41 additions and 0 deletions.
41 changes: 41 additions & 0 deletions makeZIP.bat
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@

REM ## make the exe

cd build
conan install .. --build missing
qmake ..\quoFEM.pro
nmake

REM ## copy application into folder and winddeployqt it

copy quoFEM.exe .\quoFEM_Windows_Download
cd quoFEM_Windows_Download
windeployqt quoFEM.exe

REM ## copy examples

rmdir /s /q .\Examples
mkdir .\Examples
xcopy /s /e /Q ..\..\Examples .\Examples

REM ## delete applications folder and copy new stuff

rmdir /s /q .\applications
mkdir .\applications
mkdir .\applications\performFEM
mkdir .\applications\performUQ
mkdir .\applications\Workflow
mkdir .\applications\opensees
mkdir .\applications\dakota
mkdir .\applications\python
mkdir .\applications\common
xcopy /s /e ..\..\..\SimCenterBackendApplications\applications\performFEM .\applications\performFEM
xcopy /s /e ..\..\..\SimCenterBackendApplications\applications\performUQ .\applications\performUQ
xcopy /s /e ..\..\..\SimCenterBackendApplications\applications\Workflow .\applications\Workflow
xcopy /s /e ..\..\..\SimCenterBackendApplications\applications\OpenSees .\applications\opensees
xcopy /s /e ..\..\..\SimCenterBackendApplications\applications\dakota .\applications\dakota
xcopy /s /e /Q ..\..\..\SimCenterBackendApplications\applications\python .\applications\python
xcopy /s /e ..\..\..\SimCenterBackendApplications\applications\common .\applications\common



0 comments on commit 94ebe9e

Please sign in to comment.