############################################################################################ # NSIS Installation Script created by NSIS Quick Setup Script Generator v1.09.18 # Entirely Edited with NullSoft Scriptable Installation System # by Vlasis K. Barkas aka Red Wine red_wine@freemail.gr Sep 2006 ############################################################################################ !define APP_NAME "CompuCell3D" !define COMP_NAME "Biocomplexity Institute" !define WEB_SITE "http://www.compucell3d.org" !define VERSION "3.7.2.0" !define COPYRIGHT "Biocomplexity Institute © 2008" !define DESCRIPTION "Application" !define INSTALLER_NAME "D:\CC3D_FILES_SVN\binaries\3.7.2\windows\setup-3.7.2.0v20140724.exe" !define MAIN_APP_EXE "compucell3d.bat" !define INSTALL_TYPE "SetShellVarContext all" !define REG_ROOT "HKLM" !define REG_APP_PATH "Software\Microsoft\Windows\CurrentVersion\App Paths\${MAIN_APP_EXE}" !define UNINSTALL_PATH "Software\Microsoft\Windows\CurrentVersion\Uninstall\${APP_NAME}" !define REG_START_MENU "Start Menu Folder" ### CUSTOM MODIFICATION !include "FileFunc.nsh" !define INSTALLATION_SOURCE_DIR "D:\install_projects\3.7.2" !define CELLDRAW_EXE "celldraw.bat" !define TWEDIT_EXE "twedit++.bat" !define MUI_ICON "${NSISDIR}\Contrib\Graphics\Icons\cc3d_128x128_logo_setup.ico" Var PYTHON_PATH27 ; holding the python path Var numpyErrorCode ; holding error code for numpy import attempt Var win32guiErrorCode ; holding error code for win32gui import attempt Var CURRENT_UNINSTALLER ; name of the current uninstaller InstallDir "" Function .onInit ; ${GetRoot} "$PROGRAMFILES" $SUGGESTED_INSTALL_PATH ${GetRoot} "$PROGRAMFILES" $R0 ; MessageBox MB_OK " Installation dir $R0" ; strcpy $SUGGESTED_INSTALL_PATH $R0 StrCpy $InstDir "$R0\CompuCell3D" FunctionEnd ### END OF CUSTOM MODIFICATION var SM_Folder ###################################################################### VIProductVersion "${VERSION}" VIAddVersionKey "ProductName" "${APP_NAME}" VIAddVersionKey "CompanyName" "${COMP_NAME}" VIAddVersionKey "LegalCopyright" "${COPYRIGHT}" VIAddVersionKey "FileDescription" "${DESCRIPTION}" VIAddVersionKey "FileVersion" "${VERSION}" ###################################################################### SetCompressor ZLIB Name "${APP_NAME}" Caption "${APP_NAME}" OutFile "${INSTALLER_NAME}" BrandingText "${APP_NAME}" XPStyle on InstallDirRegKey "${REG_ROOT}" "${REG_APP_PATH}" "" InstallDir "$PROGRAMFILES\CompuCell3D" ###################################################################### !include "MUI.nsh" !define MUI_ABORTWARNING !define MUI_UNABORTWARNING !insertmacro MUI_PAGE_WELCOME !ifdef LICENSE_TXT !insertmacro MUI_PAGE_LICENSE "${LICENSE_TXT}" !endif !insertmacro MUI_PAGE_DIRECTORY !ifdef REG_START_MENU !define MUI_STARTMENUPAGE_DEFAULTFOLDER "CompuCell3D" !define MUI_STARTMENUPAGE_REGISTRY_ROOT "${REG_ROOT}" !define MUI_STARTMENUPAGE_REGISTRY_KEY "${UNINSTALL_PATH}" !define MUI_STARTMENUPAGE_REGISTRY_VALUENAME "${REG_START_MENU}" !insertmacro MUI_PAGE_STARTMENU Application $SM_Folder !endif !insertmacro MUI_PAGE_INSTFILES !insertmacro MUI_PAGE_FINISH !insertmacro MUI_UNPAGE_CONFIRM !insertmacro MUI_UNPAGE_INSTFILES !insertmacro MUI_UNPAGE_FINISH !insertmacro MUI_LANGUAGE "English" ###################################################################### ### CUSTOM MODIFICATION Section -Uninstaller strcpy $CURRENT_UNINSTALLER "" ReadRegStr $CURRENT_UNINSTALLER ${REG_ROOT} "${UNINSTALL_PATH}\" "UninstallString" strcmp $CURRENT_UNINSTALLER "" "" foundUninstaller goto notfoundUninstaller foundUninstaller: ;MessageBox MB_OK "Exsisting copy of CompuCell3D will be uninstalled now.$\nPLEASE make sure to backup existing simulation" MessageBox MB_YESNO "Found existing CompuCell3D installation.$\nWould you like unistall it now (recommended)?$\n Before uninstalling PLEASE backup existing simulations" /SD IDYES IDNO NoUninstall ; ExecWait "$CURRENT_UNINSTALLER" ExecWait '"$CURRENT_UNINSTALLER" _?=$INSTDIR' MessageBox MB_OK " Uninstall Succesful " goto uninstallSectionComplete NoUninstall: MessageBox MB_OK " No uninstallation performed " goto uninstallSectionComplete notfoundUninstaller: uninstallSectionComplete: SectionEnd Section -PythonDependencies DetailPrint "Checking for Python 2.5" call CheckPython27 SetOutPath $INSTDIR\Prerequisites File "${INSTALLATION_SOURCE_DIR}\Prerequisites\numpy-1.5.1-win32-superpack-python2.7.exe" ExecWait '$PYTHON_PATH27python -c "import numpy"' $numpyErrorCode strcmp $numpyErrorCode "0" "" numpyNotInstalled goto numpyInstalled numpyNotInstalled: MessageBox MB_OK " NUMPY IS NOT INSTALLED. Starting numpy installer..." ExecWait "$INSTDIR\Prerequisites\numpy-1.5.1-win32-superpack-python2.7.exe" ; goto finishSection numpyInstalled: SetOutPath $INSTDIR\Prerequisites File "${INSTALLATION_SOURCE_DIR}\Prerequisites\pywin32-216.win32-py2.7.exe" ExecWait '$PYTHON_PATH27python -c "import win32gui"' $win32guiErrorCode strcmp $win32guiErrorCode "0" "" pywin32NotInstalled goto pywin32Installed pywin32NotInstalled: MessageBox MB_OK " PyWin32 IS NOT INSTALLED. Starting pywin32 installer..." ExecWait "$INSTDIR\Prerequisites\pywin32-216.win32-py2.7.exe" goto finishSection pywin32Installed: finishSection: SectionEnd Section -Prerequisites SetOutPath $INSTDIR\Prerequisites File "${INSTALLATION_SOURCE_DIR}\Prerequisites\vcredist_x86.exe" ; ExecWait "$INSTDIR\Prerequisites\vcredist_x86.exe /q:a /c:$\"VCREDI~1.EXE /q:a /c:$\"$\"msiexec /i vcredist.msi /qb!$\"$\" $\"" ExecWait "$INSTDIR\Prerequisites\vcredist_x86.exe /q /norestart" Goto vs2008Libs vs2008Libs: SectionEnd ### CUSTOM MODIFICATION ###################################################################### Section -MainProgram ${INSTALL_TYPE} SetOverwrite ifnewer SetOutPath "$INSTDIR" File "D:\install_projects\3.7.2\celldraw.bat" File "D:\install_projects\3.7.2\celldraw.bat.in.v2" File "D:\install_projects\3.7.2\compucell3d.bat" File "D:\install_projects\3.7.2\compucell3d.bat.in.v2" File "D:\install_projects\3.7.2\runScript.bat" File "D:\install_projects\3.7.2\runScript.bat.in.v2" File "D:\install_projects\3.7.2\scriptSetup.py" File "D:\install_projects\3.7.2\twedit++.bat" File "D:\install_projects\3.7.2\twedit++.bat.in.v2" SetOutPath "$INSTDIR\bin" File "D:\install_projects\3.7.2\bin\bionetsolver.dll" File "D:\install_projects\3.7.2\bin\bzip2.dll" File "D:\install_projects\3.7.2\bin\CC3DBoundary.dll" File "D:\install_projects\3.7.2\bin\CC3DCompuCellLib.dll" File "D:\install_projects\3.7.2\bin\CC3DExpressionEvaluator.dll" File "D:\install_projects\3.7.2\bin\CC3DXMLUtils.dll" File "D:\install_projects\3.7.2\bin\CompuCell3D.exe" File "D:\install_projects\3.7.2\bin\ExampleClass.dll" File "D:\install_projects\3.7.2\bin\FieldExtractor.dll" File "D:\install_projects\3.7.2\bin\iconv.dll" File "D:\install_projects\3.7.2\bin\libsbml.dll" File "D:\install_projects\3.7.2\bin\libxml2.dll" File "D:\install_projects\3.7.2\bin\LSDyna.dll" File "D:\install_projects\3.7.2\bin\MapReduceMPI.dll" File "D:\install_projects\3.7.2\bin\mpistubs.dll" File "D:\install_projects\3.7.2\bin\OpenCL.dll" File "D:\install_projects\3.7.2\bin\python27.dll" File "D:\install_projects\3.7.2\bin\qscintilla2.dll" File "D:\install_projects\3.7.2\bin\QtCore4.dll" File "D:\install_projects\3.7.2\bin\QtGui4.dll" File "D:\install_projects\3.7.2\bin\QtNetwork4.dll" File "D:\install_projects\3.7.2\bin\QtOpenGL4.dll" File "D:\install_projects\3.7.2\bin\QtSvg4.dll" File "D:\install_projects\3.7.2\bin\QtXml4.dll" File "D:\install_projects\3.7.2\bin\sbmlsolver.dll" File "D:\install_projects\3.7.2\bin\SerializerDE.dll" File "D:\install_projects\3.7.2\bin\vtkalglib.dll" File "D:\install_projects\3.7.2\bin\vtkCharts.dll" File "D:\install_projects\3.7.2\bin\vtkChartsPythonD.dll" File "D:\install_projects\3.7.2\bin\vtkCommon.dll" File "D:\install_projects\3.7.2\bin\vtkCommonPythonD.dll" File "D:\install_projects\3.7.2\bin\vtkDICOMParser.dll" File "D:\install_projects\3.7.2\bin\vtkexoIIc.dll" File "D:\install_projects\3.7.2\bin\vtkexpat.dll" File "D:\install_projects\3.7.2\bin\vtkFiltering.dll" File "D:\install_projects\3.7.2\bin\vtkFilteringPythonD.dll" File "D:\install_projects\3.7.2\bin\vtkfreetype.dll" File "D:\install_projects\3.7.2\bin\vtkftgl.dll" File "D:\install_projects\3.7.2\bin\vtkGenericFiltering.dll" File "D:\install_projects\3.7.2\bin\vtkGenericFilteringPythonD.dll" File "D:\install_projects\3.7.2\bin\vtkGeovis.dll" File "D:\install_projects\3.7.2\bin\vtkGeovisPythonD.dll" File "D:\install_projects\3.7.2\bin\vtkGraphics.dll" File "D:\install_projects\3.7.2\bin\vtkGraphicsPythonD.dll" File "D:\install_projects\3.7.2\bin\vtkhdf5.dll" File "D:\install_projects\3.7.2\bin\vtkhdf5_hl.dll" File "D:\install_projects\3.7.2\bin\vtkHybrid.dll" File "D:\install_projects\3.7.2\bin\vtkHybridPythonD.dll" File "D:\install_projects\3.7.2\bin\vtkImaging.dll" File "D:\install_projects\3.7.2\bin\vtkImagingPythonD.dll" File "D:\install_projects\3.7.2\bin\vtkInfovis.dll" File "D:\install_projects\3.7.2\bin\vtkInfovisPythonD.dll" File "D:\install_projects\3.7.2\bin\vtkIO.dll" File "D:\install_projects\3.7.2\bin\vtkIOPythonD.dll" File "D:\install_projects\3.7.2\bin\vtkjpeg.dll" File "D:\install_projects\3.7.2\bin\vtklibxml2.dll" File "D:\install_projects\3.7.2\bin\vtkmetaio.dll" File "D:\install_projects\3.7.2\bin\vtkNetCDF.dll" File "D:\install_projects\3.7.2\bin\vtkNetCDF_cxx.dll" File "D:\install_projects\3.7.2\bin\vtkpng.dll" File "D:\install_projects\3.7.2\bin\vtkproj4.dll" File "D:\install_projects\3.7.2\bin\vtkPythonCore.dll" File "D:\install_projects\3.7.2\bin\vtkRendering.dll" File "D:\install_projects\3.7.2\bin\vtkRenderingPythonD.dll" File "D:\install_projects\3.7.2\bin\vtksys.dll" File "D:\install_projects\3.7.2\bin\vtktiff.dll" File "D:\install_projects\3.7.2\bin\vtkverdict.dll" File "D:\install_projects\3.7.2\bin\vtkViews.dll" File "D:\install_projects\3.7.2\bin\vtkViewsPythonD.dll" File "D:\install_projects\3.7.2\bin\vtkVolumeRendering.dll" File "D:\install_projects\3.7.2\bin\vtkVolumeRenderingPythonD.dll" File "D:\install_projects\3.7.2\bin\vtkWidgets.dll" File "D:\install_projects\3.7.2\bin\vtkWidgetsPythonD.dll" File "D:\install_projects\3.7.2\bin\vtkzlib.dll" File "D:\install_projects\3.7.2\bin\zlib1.dll" SetOutPath "$INSTDIR\CellDraw" File "D:\install_projects\3.7.2\CellDraw\cdConstants.py" File "D:\install_projects\3.7.2\CellDraw\cdControlClusters.py" File "D:\install_projects\3.7.2\CellDraw\cdControlImageSequence.py" File "D:\install_projects\3.7.2\CellDraw\cdControlInputImage.py" File "D:\install_projects\3.7.2\CellDraw\cdControlLayerSelection.py" File "D:\install_projects\3.7.2\CellDraw\cdControlPanel.py" File "D:\install_projects\3.7.2\CellDraw\cdControlPIFFGenerationMode.py" File "D:\install_projects\3.7.2\CellDraw\cdControlRegionOrCell.py" File "D:\install_projects\3.7.2\CellDraw\cdControlSceneItemEdit.py" File "D:\install_projects\3.7.2\CellDraw\cdControlSceneScaleZoom.py" File "D:\install_projects\3.7.2\CellDraw\cdControlTypes.py" File "D:\install_projects\3.7.2\CellDraw\cdDiagramScene.py" File "D:\install_projects\3.7.2\CellDraw\cdDiagramScene_rc.py" File "D:\install_projects\3.7.2\CellDraw\cdImageLayer.py" File "D:\install_projects\3.7.2\CellDraw\cdImageSequence.py" File "D:\install_projects\3.7.2\CellDraw\cdPixelEditor.py" File "D:\install_projects\3.7.2\CellDraw\cdPixelEditor_rc.py" File "D:\install_projects\3.7.2\CellDraw\cdPreferences.py" File "D:\install_projects\3.7.2\CellDraw\cdSceneAssistant.py" File "D:\install_projects\3.7.2\CellDraw\cdSceneBundle.py" File "D:\install_projects\3.7.2\CellDraw\cdSceneRasterizer.py" File "D:\install_projects\3.7.2\CellDraw\cdTableOfBlockCellSizes.py" File "D:\install_projects\3.7.2\CellDraw\cdTableOfTypes.py" File "D:\install_projects\3.7.2\CellDraw\cdWaitProgressBar.py" File "D:\install_projects\3.7.2\CellDraw\cdWaitProgressBarWithImage.py" File "D:\install_projects\3.7.2\CellDraw\cellDrawMain.pyw" File "D:\install_projects\3.7.2\CellDraw\ui_cellDrawGUI.py" SetOutPath "$INSTDIR\CellDraw\cc3Dhelpfiles" File "D:\install_projects\3.7.2\CellDraw\cc3Dhelpfiles\helpfile_CellDraw.cc3d" File "D:\install_projects\3.7.2\CellDraw\cc3Dhelpfiles\readme.text" SetOutPath "$INSTDIR\CellDraw\cc3Dhelpfiles\Simulation" File "D:\install_projects\3.7.2\CellDraw\cc3Dhelpfiles\Simulation\helpfile_CellDraw.py" File "D:\install_projects\3.7.2\CellDraw\cc3Dhelpfiles\Simulation\helpfile_steppables_CellDraw.py" SetOutPath "$INSTDIR\CellDraw\icons" File "D:\install_projects\3.7.2\CellDraw\icons\background1.png" File "D:\install_projects\3.7.2\CellDraw\icons\background2.png" File "D:\install_projects\3.7.2\CellDraw\icons\background3.png" File "D:\install_projects\3.7.2\CellDraw\icons\background4.png" File "D:\install_projects\3.7.2\CellDraw\icons\bold.png" File "D:\install_projects\3.7.2\CellDraw\icons\bringtofront.png" File "D:\install_projects\3.7.2\CellDraw\icons\CellDraw.icns" File "D:\install_projects\3.7.2\CellDraw\icons\CellDraw.png" File "D:\install_projects\3.7.2\CellDraw\icons\CellDraw_64x64.ico" File "D:\install_projects\3.7.2\CellDraw\icons\CellDraw_64x64.png" File "D:\install_projects\3.7.2\CellDraw\icons\CellDraw_64x64_doc.ico" File "D:\install_projects\3.7.2\CellDraw\icons\copyRegion.png" File "D:\install_projects\3.7.2\CellDraw\icons\cutRegion.png" File "D:\install_projects\3.7.2\CellDraw\icons\deleteRegion.png" File "D:\install_projects\3.7.2\CellDraw\icons\drawPencil.png" File "D:\install_projects\3.7.2\CellDraw\icons\drawPolygon.png" File "D:\install_projects\3.7.2\CellDraw\icons\editCluster.png" File "D:\install_projects\3.7.2\CellDraw\icons\editClusterBAK.png" File "D:\install_projects\3.7.2\CellDraw\icons\floodfill.png" File "D:\install_projects\3.7.2\CellDraw\icons\floodfill_old.png" File "D:\install_projects\3.7.2\CellDraw\icons\imageLayer.png" File "D:\install_projects\3.7.2\CellDraw\icons\imageSequence.png" File "D:\install_projects\3.7.2\CellDraw\icons\imageSequenceBW.png" File "D:\install_projects\3.7.2\CellDraw\icons\imageSequenceShowContours.png" File "D:\install_projects\3.7.2\CellDraw\icons\imageSequenceShowEdge.png" File "D:\install_projects\3.7.2\CellDraw\icons\imageSequenceShowSeeds.png" File "D:\install_projects\3.7.2\CellDraw\icons\imageSequenceShowVolume.png" File "D:\install_projects\3.7.2\CellDraw\icons\italic.png" File "D:\install_projects\3.7.2\CellDraw\icons\itemIsCell.png" File "D:\install_projects\3.7.2\CellDraw\icons\itemIsCell_192x192.png" File "D:\install_projects\3.7.2\CellDraw\icons\itemIsRegion.png" File "D:\install_projects\3.7.2\CellDraw\icons\itemIsRegion_192x192.png" File "D:\install_projects\3.7.2\CellDraw\icons\linecolor.png" File "D:\install_projects\3.7.2\CellDraw\icons\linepointer.png" File "D:\install_projects\3.7.2\CellDraw\icons\pasteRegion.png" File "D:\install_projects\3.7.2\CellDraw\icons\pickColor.png" File "D:\install_projects\3.7.2\CellDraw\icons\PIFFFixedRaster.png" File "D:\install_projects\3.7.2\CellDraw\icons\PIFFFixedRaster_192x192.png" File "D:\install_projects\3.7.2\CellDraw\icons\PIFFFixedRaster_orig.png" File "D:\install_projects\3.7.2\CellDraw\icons\PIFFOneRasterPerRegion.png" File "D:\install_projects\3.7.2\CellDraw\icons\PIFFOneRasterPerRegion_orig.png" File "D:\install_projects\3.7.2\CellDraw\icons\PIFFPottsRaster.png" File "D:\install_projects\3.7.2\CellDraw\icons\PIFFPotts_orig.png" File "D:\install_projects\3.7.2\CellDraw\icons\PIFF_fixed_small.png" File "D:\install_projects\3.7.2\CellDraw\icons\pointer.png" File "D:\install_projects\3.7.2\CellDraw\icons\regiontable.png" File "D:\install_projects\3.7.2\CellDraw\icons\resizepointer.png" File "D:\install_projects\3.7.2\CellDraw\icons\sendtoback.png" File "D:\install_projects\3.7.2\CellDraw\icons\textpointer.png" File "D:\install_projects\3.7.2\CellDraw\icons\underline.png" SetOutPath "$INSTDIR\Demos" SetOutPath "$INSTDIR\Demos\BionetSolverExamples" SetOutPath "$INSTDIR\Demos\BionetSolverExamples\DeltaNotchWithMitosis" File "D:\install_projects\3.7.2\Demos\BionetSolverExamples\DeltaNotchWithMitosis\DeltaNotchWithMitosis.cc3d" SetOutPath "$INSTDIR\Demos\BionetSolverExamples\DeltaNotchWithMitosis\Simulation" File "D:\install_projects\3.7.2\Demos\BionetSolverExamples\DeltaNotchWithMitosis\Simulation\DeltaNotchWithMitosis.py" File "D:\install_projects\3.7.2\Demos\BionetSolverExamples\DeltaNotchWithMitosis\Simulation\DeltaNotchWithMitosis.xml" File "D:\install_projects\3.7.2\Demos\BionetSolverExamples\DeltaNotchWithMitosis\Simulation\DeltaNotchWithMitosisSteppables.py" File "D:\install_projects\3.7.2\Demos\BionetSolverExamples\DeltaNotchWithMitosis\Simulation\MinimalDeltaNotch.sbml" SetOutPath "$INSTDIR\Demos\BionetSolverExamples\MultiscaleSimulation" File "D:\install_projects\3.7.2\Demos\BionetSolverExamples\MultiscaleSimulation\MultiscaleSimulation.cc3d" SetOutPath "$INSTDIR\Demos\BionetSolverExamples\MultiscaleSimulation\Simulation" File "D:\install_projects\3.7.2\Demos\BionetSolverExamples\MultiscaleSimulation\Simulation\CadherinCatenin_RamisConde2008.sbml" File "D:\install_projects\3.7.2\Demos\BionetSolverExamples\MultiscaleSimulation\Simulation\MinimalDeltaNotch.sbml" File "D:\install_projects\3.7.2\Demos\BionetSolverExamples\MultiscaleSimulation\Simulation\MultiscaleSimulation.py" File "D:\install_projects\3.7.2\Demos\BionetSolverExamples\MultiscaleSimulation\Simulation\MultiscaleSimulation.xml" File "D:\install_projects\3.7.2\Demos\BionetSolverExamples\MultiscaleSimulation\Simulation\MultiscaleSimulationSteppables.py" File "D:\install_projects\3.7.2\Demos\BionetSolverExamples\MultiscaleSimulation\Simulation\PK_BloodLiver.sbml" File "D:\install_projects\3.7.2\Demos\BionetSolverExamples\MultiscaleSimulation\Simulation\SimpleExample.sbml" SetOutPath "$INSTDIR\Demos\BionetSolverExamples\OscillatingContactEnergies" File "D:\install_projects\3.7.2\Demos\BionetSolverExamples\OscillatingContactEnergies\OscillatingContactEnergies.cc3d" SetOutPath "$INSTDIR\Demos\BionetSolverExamples\OscillatingContactEnergies\Simulation" File "D:\install_projects\3.7.2\Demos\BionetSolverExamples\OscillatingContactEnergies\Simulation\OscillatingContactEnergies.py" File "D:\install_projects\3.7.2\Demos\BionetSolverExamples\OscillatingContactEnergies\Simulation\OscillatingContactEnergies.xml" File "D:\install_projects\3.7.2\Demos\BionetSolverExamples\OscillatingContactEnergies\Simulation\OscillatingContactEnergiesSteppables.py" File "D:\install_projects\3.7.2\Demos\BionetSolverExamples\OscillatingContactEnergies\Simulation\SimpleExample.sbml" SetOutPath "$INSTDIR\Demos\BionetSolverExamples\OscillatingContactEnergiesFlex" File "D:\install_projects\3.7.2\Demos\BionetSolverExamples\OscillatingContactEnergiesFlex\OscillatingContactEnergiesFlex.cc3d" SetOutPath "$INSTDIR\Demos\BionetSolverExamples\OscillatingContactEnergiesFlex\Simulation" File "D:\install_projects\3.7.2\Demos\BionetSolverExamples\OscillatingContactEnergiesFlex\Simulation\OscillatingContactEnergiesFlex.py" File "D:\install_projects\3.7.2\Demos\BionetSolverExamples\OscillatingContactEnergiesFlex\Simulation\OscillatingContactEnergiesFlex.xml" File "D:\install_projects\3.7.2\Demos\BionetSolverExamples\OscillatingContactEnergiesFlex\Simulation\OscillatingContactEnergiesFlexSteppables.py" File "D:\install_projects\3.7.2\Demos\BionetSolverExamples\OscillatingContactEnergiesFlex\Simulation\SimpleExample.sbml" SetOutPath "$INSTDIR\Demos\BionetSolverExamples\TestCellDeath" File "D:\install_projects\3.7.2\Demos\BionetSolverExamples\TestCellDeath\TestCellDeath.cc3d" SetOutPath "$INSTDIR\Demos\BionetSolverExamples\TestCellDeath\Simulation" File "D:\install_projects\3.7.2\Demos\BionetSolverExamples\TestCellDeath\Simulation\MinimalDeltaNotch.sbml" File "D:\install_projects\3.7.2\Demos\BionetSolverExamples\TestCellDeath\Simulation\TestCellDeath.py" File "D:\install_projects\3.7.2\Demos\BionetSolverExamples\TestCellDeath\Simulation\TestCellDeath.xml" File "D:\install_projects\3.7.2\Demos\BionetSolverExamples\TestCellDeath\Simulation\TestCellDeathSteppables.py" SetOutPath "$INSTDIR\Demos\BookChapterDemos_ComputationalMethodsInCellBiology" SetOutPath "$INSTDIR\Demos\BookChapterDemos_ComputationalMethodsInCellBiology\Angiogenesis" File "D:\install_projects\3.7.2\Demos\BookChapterDemos_ComputationalMethodsInCellBiology\Angiogenesis\Angiogenesis.cc3d" SetOutPath "$INSTDIR\Demos\BookChapterDemos_ComputationalMethodsInCellBiology\Angiogenesis\Simulation" File "D:\install_projects\3.7.2\Demos\BookChapterDemos_ComputationalMethodsInCellBiology\Angiogenesis\Simulation\Angiogenesis.py" File "D:\install_projects\3.7.2\Demos\BookChapterDemos_ComputationalMethodsInCellBiology\Angiogenesis\Simulation\AngiogenesisSteppables.py" SetOutPath "$INSTDIR\Demos\BookChapterDemos_ComputationalMethodsInCellBiology\cellsorting" File "D:\install_projects\3.7.2\Demos\BookChapterDemos_ComputationalMethodsInCellBiology\cellsorting\cellsorting.cc3d" SetOutPath "$INSTDIR\Demos\BookChapterDemos_ComputationalMethodsInCellBiology\cellsorting\Simulation" File "D:\install_projects\3.7.2\Demos\BookChapterDemos_ComputationalMethodsInCellBiology\cellsorting\Simulation\cellsorting.py" File "D:\install_projects\3.7.2\Demos\BookChapterDemos_ComputationalMethodsInCellBiology\cellsorting\Simulation\cellsorting.xml" File "D:\install_projects\3.7.2\Demos\BookChapterDemos_ComputationalMethodsInCellBiology\cellsorting\Simulation\cellsortingSteppables.py" SetOutPath "$INSTDIR\Demos\BookChapterDemos_ComputationalMethodsInCellBiology\DeltaNotch" File "D:\install_projects\3.7.2\Demos\BookChapterDemos_ComputationalMethodsInCellBiology\DeltaNotch\DeltaNotch.cc3d" SetOutPath "$INSTDIR\Demos\BookChapterDemos_ComputationalMethodsInCellBiology\DeltaNotch\Simulation" File "D:\install_projects\3.7.2\Demos\BookChapterDemos_ComputationalMethodsInCellBiology\DeltaNotch\Simulation\DeltaNotch.py" File "D:\install_projects\3.7.2\Demos\BookChapterDemos_ComputationalMethodsInCellBiology\DeltaNotch\Simulation\DeltaNotchSteppables.py" File "D:\install_projects\3.7.2\Demos\BookChapterDemos_ComputationalMethodsInCellBiology\DeltaNotch\Simulation\DN_Collier.sbml" SetOutPath "$INSTDIR\Demos\BookChapterDemos_ComputationalMethodsInCellBiology\VascularTumor" File "D:\install_projects\3.7.2\Demos\BookChapterDemos_ComputationalMethodsInCellBiology\VascularTumor\VascularTumor.cc3d" SetOutPath "$INSTDIR\Demos\BookChapterDemos_ComputationalMethodsInCellBiology\VascularTumor\Simulation" File "D:\install_projects\3.7.2\Demos\BookChapterDemos_ComputationalMethodsInCellBiology\VascularTumor\Simulation\Glucose_300.dat" File "D:\install_projects\3.7.2\Demos\BookChapterDemos_ComputationalMethodsInCellBiology\VascularTumor\Simulation\VascularTumor.py" File "D:\install_projects\3.7.2\Demos\BookChapterDemos_ComputationalMethodsInCellBiology\VascularTumor\Simulation\VascularTumor.xml" File "D:\install_projects\3.7.2\Demos\BookChapterDemos_ComputationalMethodsInCellBiology\VascularTumor\Simulation\VascularTumorSteppables.py" SetOutPath "$INSTDIR\Demos\CompuCellPythonTutorial" SetOutPath "$INSTDIR\Demos\CompuCellPythonTutorial\BionetDemo" File "D:\install_projects\3.7.2\Demos\CompuCellPythonTutorial\BionetDemo\BionetDemo.cc3d" SetOutPath "$INSTDIR\Demos\CompuCellPythonTutorial\BionetDemo\Simulation" File "D:\install_projects\3.7.2\Demos\CompuCellPythonTutorial\BionetDemo\Simulation\BionetDemo.py" File "D:\install_projects\3.7.2\Demos\CompuCellPythonTutorial\BionetDemo\Simulation\BionetDemo.xml" File "D:\install_projects\3.7.2\Demos\CompuCellPythonTutorial\BionetDemo\Simulation\BionetDemoSteppables.py" File "D:\install_projects\3.7.2\Demos\CompuCellPythonTutorial\BionetDemo\Simulation\oscli.sbml" SetOutPath "$INSTDIR\Demos\CompuCellPythonTutorial\BuildWall3D" File "D:\install_projects\3.7.2\Demos\CompuCellPythonTutorial\BuildWall3D\BuildWall3D.cc3d" SetOutPath "$INSTDIR\Demos\CompuCellPythonTutorial\BuildWall3D\Simulation" File "D:\install_projects\3.7.2\Demos\CompuCellPythonTutorial\BuildWall3D\Simulation\BuildWall3D.py" File "D:\install_projects\3.7.2\Demos\CompuCellPythonTutorial\BuildWall3D\Simulation\BuildWall3D.xml" File "D:\install_projects\3.7.2\Demos\CompuCellPythonTutorial\BuildWall3D\Simulation\BuildWall3DSteppables.py" SetOutPath "$INSTDIR\Demos\CompuCellPythonTutorial\CellDistance" File "D:\install_projects\3.7.2\Demos\CompuCellPythonTutorial\CellDistance\CellDistance.cc3d" SetOutPath "$INSTDIR\Demos\CompuCellPythonTutorial\CellDistance\Simulation" File "D:\install_projects\3.7.2\Demos\CompuCellPythonTutorial\CellDistance\Simulation\CellDistance.py" File "D:\install_projects\3.7.2\Demos\CompuCellPythonTutorial\CellDistance\Simulation\CellDistance.xml" File "D:\install_projects\3.7.2\Demos\CompuCellPythonTutorial\CellDistance\Simulation\CellDistanceSteppables.py" SetOutPath "$INSTDIR\Demos\CompuCellPythonTutorial\CellField" File "D:\install_projects\3.7.2\Demos\CompuCellPythonTutorial\CellField\CellField.cc3d" SetOutPath "$INSTDIR\Demos\CompuCellPythonTutorial\CellField\Simulation" File "D:\install_projects\3.7.2\Demos\CompuCellPythonTutorial\CellField\Simulation\CellField.py" File "D:\install_projects\3.7.2\Demos\CompuCellPythonTutorial\CellField\Simulation\CellField.xml" File "D:\install_projects\3.7.2\Demos\CompuCellPythonTutorial\CellField\Simulation\CellFieldSteppables.py" SetOutPath "$INSTDIR\Demos\CompuCellPythonTutorial\cellInitializer" File "D:\install_projects\3.7.2\Demos\CompuCellPythonTutorial\cellInitializer\cellInitilalizer.cc3d" SetOutPath "$INSTDIR\Demos\CompuCellPythonTutorial\cellInitializer\Simulation" File "D:\install_projects\3.7.2\Demos\CompuCellPythonTutorial\cellInitializer\Simulation\cellInitializer.py" File "D:\install_projects\3.7.2\Demos\CompuCellPythonTutorial\cellInitializer\Simulation\cellInitializer.xml" File "D:\install_projects\3.7.2\Demos\CompuCellPythonTutorial\cellInitializer\Simulation\cellInitializerSteppables.py" File "D:\install_projects\3.7.2\Demos\CompuCellPythonTutorial\cellInitializer\Simulation\CellSurfaceCircularFactors.txt" SetOutPath "$INSTDIR\Demos\CompuCellPythonTutorial\CellManipulation" File "D:\install_projects\3.7.2\Demos\CompuCellPythonTutorial\CellManipulation\CellManipulation.cc3d" SetOutPath "$INSTDIR\Demos\CompuCellPythonTutorial\CellManipulation\Simulation" File "D:\install_projects\3.7.2\Demos\CompuCellPythonTutorial\CellManipulation\Simulation\CellManipulation.piff" File "D:\install_projects\3.7.2\Demos\CompuCellPythonTutorial\CellManipulation\Simulation\CellManipulation.py" File "D:\install_projects\3.7.2\Demos\CompuCellPythonTutorial\CellManipulation\Simulation\CellManipulation.xml" File "D:\install_projects\3.7.2\Demos\CompuCellPythonTutorial\CellManipulation\Simulation\CellManipulationSteppables.py" SetOutPath "$INSTDIR\Demos\CompuCellPythonTutorial\CellMotility" File "D:\install_projects\3.7.2\Demos\CompuCellPythonTutorial\CellMotility\CellMotility.cc3d" SetOutPath "$INSTDIR\Demos\CompuCellPythonTutorial\CellMotility\Simulation" File "D:\install_projects\3.7.2\Demos\CompuCellPythonTutorial\CellMotility\Simulation\CellMotility.py" File "D:\install_projects\3.7.2\Demos\CompuCellPythonTutorial\CellMotility\Simulation\CellMotility.xml" File "D:\install_projects\3.7.2\Demos\CompuCellPythonTutorial\CellMotility\Simulation\CellMotilitySteppables.py" SetOutPath "$INSTDIR\Demos\CompuCellPythonTutorial\cellsort_2D" File "D:\install_projects\3.7.2\Demos\CompuCellPythonTutorial\cellsort_2D\cellsort_2D.cc3d" SetOutPath "$INSTDIR\Demos\CompuCellPythonTutorial\cellsort_2D\Simulation" File "D:\install_projects\3.7.2\Demos\CompuCellPythonTutorial\cellsort_2D\Simulation\cellsort_2D.py" File "D:\install_projects\3.7.2\Demos\CompuCellPythonTutorial\cellsort_2D\Simulation\cellsort_2D.xml" SetOutPath "$INSTDIR\Demos\CompuCellPythonTutorial\cellsort_engulfment_2D" File "D:\install_projects\3.7.2\Demos\CompuCellPythonTutorial\cellsort_engulfment_2D\cellsort_engulfment_2D.cc3d" SetOutPath "$INSTDIR\Demos\CompuCellPythonTutorial\cellsort_engulfment_2D\Simulation" File "D:\install_projects\3.7.2\Demos\CompuCellPythonTutorial\cellsort_engulfment_2D\Simulation\cellsort_engulfment_2D.py" File "D:\install_projects\3.7.2\Demos\CompuCellPythonTutorial\cellsort_engulfment_2D\Simulation\cellsort_engulfment_2D.xml" File "D:\install_projects\3.7.2\Demos\CompuCellPythonTutorial\cellsort_engulfment_2D\Simulation\cellsort_engulfment_2D_steppables.py" SetOutPath "$INSTDIR\Demos\CompuCellPythonTutorial\clusterMitosis" File "D:\install_projects\3.7.2\Demos\CompuCellPythonTutorial\clusterMitosis\clusterMitosis.cc3d" SetOutPath "$INSTDIR\Demos\CompuCellPythonTutorial\clusterMitosis\Simulation" File "D:\install_projects\3.7.2\Demos\CompuCellPythonTutorial\clusterMitosis\Simulation\clusterMitosis.piff" File "D:\install_projects\3.7.2\Demos\CompuCellPythonTutorial\clusterMitosis\Simulation\clusterMitosis.py" File "D:\install_projects\3.7.2\Demos\CompuCellPythonTutorial\clusterMitosis\Simulation\clusterMitosis.xml" File "D:\install_projects\3.7.2\Demos\CompuCellPythonTutorial\clusterMitosis\Simulation\clusterMitosisSteppables.py" SetOutPath "$INSTDIR\Demos\CompuCellPythonTutorial\clusterMitosisPeriodicBC" File "D:\install_projects\3.7.2\Demos\CompuCellPythonTutorial\clusterMitosisPeriodicBC\clusterMitosisPeriodicBC.cc3d" SetOutPath "$INSTDIR\Demos\CompuCellPythonTutorial\clusterMitosisPeriodicBC\Simulation" File "D:\install_projects\3.7.2\Demos\CompuCellPythonTutorial\clusterMitosisPeriodicBC\Simulation\clusterMitosis.py" File "D:\install_projects\3.7.2\Demos\CompuCellPythonTutorial\clusterMitosisPeriodicBC\Simulation\clusterMitosis.xml" File "D:\install_projects\3.7.2\Demos\CompuCellPythonTutorial\clusterMitosisPeriodicBC\Simulation\clusterMitosisPeriodicBC.piff" File "D:\install_projects\3.7.2\Demos\CompuCellPythonTutorial\clusterMitosisPeriodicBC\Simulation\clusterMitosisSteppables.py" SetOutPath "$INSTDIR\Demos\CompuCellPythonTutorial\clusterSurface" File "D:\install_projects\3.7.2\Demos\CompuCellPythonTutorial\clusterSurface\clusterSurface.cc3d" SetOutPath "$INSTDIR\Demos\CompuCellPythonTutorial\clusterSurface\Simulation" File "D:\install_projects\3.7.2\Demos\CompuCellPythonTutorial\clusterSurface\Simulation\clusterSurface.piff" File "D:\install_projects\3.7.2\Demos\CompuCellPythonTutorial\clusterSurface\Simulation\clusterSurface.py" File "D:\install_projects\3.7.2\Demos\CompuCellPythonTutorial\clusterSurface\Simulation\clusterSurface.xml" File "D:\install_projects\3.7.2\Demos\CompuCellPythonTutorial\clusterSurface\Simulation\clusterSurfaceSteppables.py" SetOutPath "$INSTDIR\Demos\CompuCellPythonTutorial\diffusion" File "D:\install_projects\3.7.2\Demos\CompuCellPythonTutorial\diffusion\diffusion.cc3d" SetOutPath "$INSTDIR\Demos\CompuCellPythonTutorial\diffusion\Simulation" File "D:\install_projects\3.7.2\Demos\CompuCellPythonTutorial\diffusion\Simulation\diffusion_2D.pulse.txt" File "D:\install_projects\3.7.2\Demos\CompuCellPythonTutorial\diffusion\Simulation\diffusion_2D.py" File "D:\install_projects\3.7.2\Demos\CompuCellPythonTutorial\diffusion\Simulation\diffusion_2D.xml" File "D:\install_projects\3.7.2\Demos\CompuCellPythonTutorial\diffusion\Simulation\diffusion_2D_steppables.py" SetOutPath "$INSTDIR\Demos\CompuCellPythonTutorial\diffusion_extra_player_field" File "D:\install_projects\3.7.2\Demos\CompuCellPythonTutorial\diffusion_extra_player_field\diffusion_extra_player_field.cc3d" SetOutPath "$INSTDIR\Demos\CompuCellPythonTutorial\diffusion_extra_player_field\Simulation" File "D:\install_projects\3.7.2\Demos\CompuCellPythonTutorial\diffusion_extra_player_field\Simulation\diffusion_2D.pulse.txt" File "D:\install_projects\3.7.2\Demos\CompuCellPythonTutorial\diffusion_extra_player_field\Simulation\diffusion_2D.xml" File "D:\install_projects\3.7.2\Demos\CompuCellPythonTutorial\diffusion_extra_player_field\Simulation\diffusion_2D_extra_player_field.py" File "D:\install_projects\3.7.2\Demos\CompuCellPythonTutorial\diffusion_extra_player_field\Simulation\diffusion_2D_steppables_player.py" SetOutPath "$INSTDIR\Demos\CompuCellPythonTutorial\ExtraAttribites" File "D:\install_projects\3.7.2\Demos\CompuCellPythonTutorial\ExtraAttribites\cellsort_2D_extra_attrib.cc3d" SetOutPath "$INSTDIR\Demos\CompuCellPythonTutorial\ExtraAttribites\Simulation" File "D:\install_projects\3.7.2\Demos\CompuCellPythonTutorial\ExtraAttribites\Simulation\cellsort_2D.xml" File "D:\install_projects\3.7.2\Demos\CompuCellPythonTutorial\ExtraAttribites\Simulation\cellsort_2D_extra_attrib.py" File "D:\install_projects\3.7.2\Demos\CompuCellPythonTutorial\ExtraAttribites\Simulation\cellsort_2D_steppables_extra_attrib.py" SetOutPath "$INSTDIR\Demos\CompuCellPythonTutorial\ExtraFields" File "D:\install_projects\3.7.2\Demos\CompuCellPythonTutorial\ExtraFields\ExtraFields.cc3d" SetOutPath "$INSTDIR\Demos\CompuCellPythonTutorial\ExtraFields\Simulation" File "D:\install_projects\3.7.2\Demos\CompuCellPythonTutorial\ExtraFields\Simulation\diffusion_2D.pulse.txt" File "D:\install_projects\3.7.2\Demos\CompuCellPythonTutorial\ExtraFields\Simulation\ExtraFields.py" File "D:\install_projects\3.7.2\Demos\CompuCellPythonTutorial\ExtraFields\Simulation\ExtraFields.xml" File "D:\install_projects\3.7.2\Demos\CompuCellPythonTutorial\ExtraFields\Simulation\ExtraFieldsSteppables.py" SetOutPath "$INSTDIR\Demos\CompuCellPythonTutorial\FieldSecretion" File "D:\install_projects\3.7.2\Demos\CompuCellPythonTutorial\FieldSecretion\FieldSecretion.cc3d" SetOutPath "$INSTDIR\Demos\CompuCellPythonTutorial\FieldSecretion\Simulation" File "D:\install_projects\3.7.2\Demos\CompuCellPythonTutorial\FieldSecretion\Simulation\amoebae_2D.piff" File "D:\install_projects\3.7.2\Demos\CompuCellPythonTutorial\FieldSecretion\Simulation\FieldSecretion.py" File "D:\install_projects\3.7.2\Demos\CompuCellPythonTutorial\FieldSecretion\Simulation\FieldSecretion.xml" File "D:\install_projects\3.7.2\Demos\CompuCellPythonTutorial\FieldSecretion\Simulation\FieldSecretionSteppables.py" SetOutPath "$INSTDIR\Demos\CompuCellPythonTutorial\FiPyConcentrationTest" File "D:\install_projects\3.7.2\Demos\CompuCellPythonTutorial\FiPyConcentrationTest\FiPyConcentrationTest.cc3d" SetOutPath "$INSTDIR\Demos\CompuCellPythonTutorial\FiPyConcentrationTest\Simulation" File "D:\install_projects\3.7.2\Demos\CompuCellPythonTutorial\FiPyConcentrationTest\Simulation\conc.txt" File "D:\install_projects\3.7.2\Demos\CompuCellPythonTutorial\FiPyConcentrationTest\Simulation\FiPyConcentrationTest.py" File "D:\install_projects\3.7.2\Demos\CompuCellPythonTutorial\FiPyConcentrationTest\Simulation\FiPyConcentrationTest.xml" File "D:\install_projects\3.7.2\Demos\CompuCellPythonTutorial\FiPyConcentrationTest\Simulation\FiPyConcentrationTestSteppables.py" SetOutPath "$INSTDIR\Demos\CompuCellPythonTutorial\GraphVTKVis" File "D:\install_projects\3.7.2\Demos\CompuCellPythonTutorial\GraphVTKVis\GraphVTKVis.cc3d" SetOutPath "$INSTDIR\Demos\CompuCellPythonTutorial\GraphVTKVis\Simulation" File "D:\install_projects\3.7.2\Demos\CompuCellPythonTutorial\GraphVTKVis\Simulation\GraphVTKVis.py" File "D:\install_projects\3.7.2\Demos\CompuCellPythonTutorial\GraphVTKVis\Simulation\GraphVTKVis.xml" File "D:\install_projects\3.7.2\Demos\CompuCellPythonTutorial\GraphVTKVis\Simulation\GraphVTKVisSteppables.py" SetOutPath "$INSTDIR\Demos\CompuCellPythonTutorial\InfoPrinter" File "D:\install_projects\3.7.2\Demos\CompuCellPythonTutorial\InfoPrinter\cellsort_2D_info_printer.cc3d" SetOutPath "$INSTDIR\Demos\CompuCellPythonTutorial\InfoPrinter\Simulation" File "D:\install_projects\3.7.2\Demos\CompuCellPythonTutorial\InfoPrinter\Simulation\cellsort_2D.xml" File "D:\install_projects\3.7.2\Demos\CompuCellPythonTutorial\InfoPrinter\Simulation\cellsort_2D_info_printer.py" File "D:\install_projects\3.7.2\Demos\CompuCellPythonTutorial\InfoPrinter\Simulation\cellsort_2D_steppables_info_printer.py" SetOutPath "$INSTDIR\Demos\CompuCellPythonTutorial\NeighborTracker" File "D:\install_projects\3.7.2\Demos\CompuCellPythonTutorial\NeighborTracker\cellsort_2D_neighbor_tracker.cc3d" SetOutPath "$INSTDIR\Demos\CompuCellPythonTutorial\NeighborTracker\Simulation" File "D:\install_projects\3.7.2\Demos\CompuCellPythonTutorial\NeighborTracker\Simulation\cellsort_2D_neighbor_tracker.py" File "D:\install_projects\3.7.2\Demos\CompuCellPythonTutorial\NeighborTracker\Simulation\cellsort_2D_neighbor_tracker.xml" File "D:\install_projects\3.7.2\Demos\CompuCellPythonTutorial\NeighborTracker\Simulation\cellsort_2D_steppables_neighbor_tracker.py" SetOutPath "$INSTDIR\Demos\CompuCellPythonTutorial\pressureField" File "D:\install_projects\3.7.2\Demos\CompuCellPythonTutorial\pressureField\pressureField.cc3d" SetOutPath "$INSTDIR\Demos\CompuCellPythonTutorial\pressureField\Simulation" File "D:\install_projects\3.7.2\Demos\CompuCellPythonTutorial\pressureField\Simulation\pressureField.py" File "D:\install_projects\3.7.2\Demos\CompuCellPythonTutorial\pressureField\Simulation\pressureField.xml" File "D:\install_projects\3.7.2\Demos\CompuCellPythonTutorial\pressureField\Simulation\pressureFieldSteppables.py" SetOutPath "$INSTDIR\Demos\CompuCellPythonTutorial\PythonOnlySimulationsExamples" SetOutPath "$INSTDIR\Demos\CompuCellPythonTutorial\PythonOnlySimulationsExamples\amoebae-2D-new-syntax" File "D:\install_projects\3.7.2\Demos\CompuCellPythonTutorial\PythonOnlySimulationsExamples\amoebae-2D-new-syntax\amoebae-2D-new-syntax.cc3d" SetOutPath "$INSTDIR\Demos\CompuCellPythonTutorial\PythonOnlySimulationsExamples\amoebae-2D-new-syntax\Simulation" File "D:\install_projects\3.7.2\Demos\CompuCellPythonTutorial\PythonOnlySimulationsExamples\amoebae-2D-new-syntax\Simulation\amoebaConcentrationField_2D.txt" File "D:\install_projects\3.7.2\Demos\CompuCellPythonTutorial\PythonOnlySimulationsExamples\amoebae-2D-new-syntax\Simulation\amoebae-2D-new-syntax.py" File "D:\install_projects\3.7.2\Demos\CompuCellPythonTutorial\PythonOnlySimulationsExamples\amoebae-2D-new-syntax\Simulation\amoebae_2D.piff" SetOutPath "$INSTDIR\Demos\CompuCellPythonTutorial\PythonOnlySimulationsExamples\bacterium_macrophage-player-new-syntax" File "D:\install_projects\3.7.2\Demos\CompuCellPythonTutorial\PythonOnlySimulationsExamples\bacterium_macrophage-player-new-syntax\bacterium_macrophage-player-new-syntax.cc3d" SetOutPath "$INSTDIR\Demos\CompuCellPythonTutorial\PythonOnlySimulationsExamples\bacterium_macrophage-player-new-syntax\Simulation" File "D:\install_projects\3.7.2\Demos\CompuCellPythonTutorial\PythonOnlySimulationsExamples\bacterium_macrophage-player-new-syntax\Simulation\bacterium_macrophage-player-new-syntax.py" File "D:\install_projects\3.7.2\Demos\CompuCellPythonTutorial\PythonOnlySimulationsExamples\bacterium_macrophage-player-new-syntax\Simulation\bacterium_macrophage_2D_wall.piff" SetOutPath "$INSTDIR\Demos\CompuCellPythonTutorial\PythonOnlySimulationsExamples\cellsort-2D-player-new-syntax" File "D:\install_projects\3.7.2\Demos\CompuCellPythonTutorial\PythonOnlySimulationsExamples\cellsort-2D-player-new-syntax\cellsort-2D-player-new-syntax.cc3d" SetOutPath "$INSTDIR\Demos\CompuCellPythonTutorial\PythonOnlySimulationsExamples\cellsort-2D-player-new-syntax\Simulation" File "D:\install_projects\3.7.2\Demos\CompuCellPythonTutorial\PythonOnlySimulationsExamples\cellsort-2D-player-new-syntax\Simulation\cellsort-2D-player-new-syntax.py" SetOutPath "$INSTDIR\Demos\CompuCellPythonTutorial\PythonOnlySimulationsExamples\cellsort2DNewPlayer" File "D:\install_projects\3.7.2\Demos\CompuCellPythonTutorial\PythonOnlySimulationsExamples\cellsort2DNewPlayer\cellsort2DNewPlayer.cc3d" SetOutPath "$INSTDIR\Demos\CompuCellPythonTutorial\PythonOnlySimulationsExamples\cellsort2DNewPlayer\Simulation" File "D:\install_projects\3.7.2\Demos\CompuCellPythonTutorial\PythonOnlySimulationsExamples\cellsort2DNewPlayer\Simulation\cellsort2DNewPlayer.py" SetOutPath "$INSTDIR\Demos\CompuCellPythonTutorial\PythonOnlySimulationsExamples\diffusion-2D-new-syntax" File "D:\install_projects\3.7.2\Demos\CompuCellPythonTutorial\PythonOnlySimulationsExamples\diffusion-2D-new-syntax\diffusion-2D-new-syntax.cc3d" SetOutPath "$INSTDIR\Demos\CompuCellPythonTutorial\PythonOnlySimulationsExamples\diffusion-2D-new-syntax\Simulation" File "D:\install_projects\3.7.2\Demos\CompuCellPythonTutorial\PythonOnlySimulationsExamples\diffusion-2D-new-syntax\Simulation\diffusion-2D-new-syntax.py" File "D:\install_projects\3.7.2\Demos\CompuCellPythonTutorial\PythonOnlySimulationsExamples\diffusion-2D-new-syntax\Simulation\diffusion_2D.pulse.txt" SetOutPath "$INSTDIR\Demos\CompuCellPythonTutorial\PythonOnlySimulationsExamples\elasticitytest-player-new-syntax" File "D:\install_projects\3.7.2\Demos\CompuCellPythonTutorial\PythonOnlySimulationsExamples\elasticitytest-player-new-syntax\elasticitytest-player-new-syntax.cc3d" SetOutPath "$INSTDIR\Demos\CompuCellPythonTutorial\PythonOnlySimulationsExamples\elasticitytest-player-new-syntax\Simulation" File "D:\install_projects\3.7.2\Demos\CompuCellPythonTutorial\PythonOnlySimulationsExamples\elasticitytest-player-new-syntax\Simulation\elasticitytest-player-new-syntax.py" File "D:\install_projects\3.7.2\Demos\CompuCellPythonTutorial\PythonOnlySimulationsExamples\elasticitytest-player-new-syntax\Simulation\elasticitytest.piff" File "D:\install_projects\3.7.2\Demos\CompuCellPythonTutorial\PythonOnlySimulationsExamples\elasticitytest-player-new-syntax\Simulation\elasticitytestSteppables.py" SetOutPath "$INSTDIR\Demos\CompuCellPythonTutorial\PythonPlugin" File "D:\install_projects\3.7.2\Demos\CompuCellPythonTutorial\PythonPlugin\cellsort_2D_with_py_plugin.cc3d" SetOutPath "$INSTDIR\Demos\CompuCellPythonTutorial\PythonPlugin\Simulation" File "D:\install_projects\3.7.2\Demos\CompuCellPythonTutorial\PythonPlugin\Simulation\cellsort_2D_plugins_with_py_plugin.py" File "D:\install_projects\3.7.2\Demos\CompuCellPythonTutorial\PythonPlugin\Simulation\cellsort_2D_py_plugin.xml" File "D:\install_projects\3.7.2\Demos\CompuCellPythonTutorial\PythonPlugin\Simulation\cellsort_2D_with_py_plugin.py" SetOutPath "$INSTDIR\Demos\CompuCellPythonTutorial\scientificHistBarPlots" File "D:\install_projects\3.7.2\Demos\CompuCellPythonTutorial\scientificHistBarPlots\scientificHistBarPlots.cc3d" SetOutPath "$INSTDIR\Demos\CompuCellPythonTutorial\scientificHistBarPlots\Simulation" File "D:\install_projects\3.7.2\Demos\CompuCellPythonTutorial\scientificHistBarPlots\Simulation\foaminit2D.piff" File "D:\install_projects\3.7.2\Demos\CompuCellPythonTutorial\scientificHistBarPlots\Simulation\Foam_Coarsening.xml" File "D:\install_projects\3.7.2\Demos\CompuCellPythonTutorial\scientificHistBarPlots\Simulation\scientificHistBarPlots.py" File "D:\install_projects\3.7.2\Demos\CompuCellPythonTutorial\scientificHistBarPlots\Simulation\scientificHistBarPlotsSteppables.py" SetOutPath "$INSTDIR\Demos\CompuCellPythonTutorial\scientificPlots" File "D:\install_projects\3.7.2\Demos\CompuCellPythonTutorial\scientificPlots\scientificPlots.cc3d" SetOutPath "$INSTDIR\Demos\CompuCellPythonTutorial\scientificPlots\Simulation" File "D:\install_projects\3.7.2\Demos\CompuCellPythonTutorial\scientificPlots\Simulation\cellsort_2D.xml" File "D:\install_projects\3.7.2\Demos\CompuCellPythonTutorial\scientificPlots\Simulation\scientificPlots.py" File "D:\install_projects\3.7.2\Demos\CompuCellPythonTutorial\scientificPlots\Simulation\scientificPlotsSteppables.py" SetOutPath "$INSTDIR\Demos\CompuCellPythonTutorial\scientificPlotsSimple" File "D:\install_projects\3.7.2\Demos\CompuCellPythonTutorial\scientificPlotsSimple\scientificPlots.cc3d" SetOutPath "$INSTDIR\Demos\CompuCellPythonTutorial\scientificPlotsSimple\Simulation" File "D:\install_projects\3.7.2\Demos\CompuCellPythonTutorial\scientificPlotsSimple\Simulation\cellsort_2D.xml" File "D:\install_projects\3.7.2\Demos\CompuCellPythonTutorial\scientificPlotsSimple\Simulation\scientificPlots.py" File "D:\install_projects\3.7.2\Demos\CompuCellPythonTutorial\scientificPlotsSimple\Simulation\scientificPlotsSteppables.py" SetOutPath "$INSTDIR\Demos\CompuCellPythonTutorial\steppableBasedMitosis" File "D:\install_projects\3.7.2\Demos\CompuCellPythonTutorial\steppableBasedMitosis\steppableBasedMitosis.cc3d" SetOutPath "$INSTDIR\Demos\CompuCellPythonTutorial\steppableBasedMitosis\Simulation" File "D:\install_projects\3.7.2\Demos\CompuCellPythonTutorial\steppableBasedMitosis\Simulation\steppableBasedMitosis.piff" File "D:\install_projects\3.7.2\Demos\CompuCellPythonTutorial\steppableBasedMitosis\Simulation\steppableBasedMitosis.py" File "D:\install_projects\3.7.2\Demos\CompuCellPythonTutorial\steppableBasedMitosis\Simulation\steppableBasedMitosis.xml" File "D:\install_projects\3.7.2\Demos\CompuCellPythonTutorial\steppableBasedMitosis\Simulation\steppableBasedMitosisSteppables.py" SetOutPath "$INSTDIR\Demos\CompuCellPythonTutorial\steppableBasedMitosisPeriodicBC" File "D:\install_projects\3.7.2\Demos\CompuCellPythonTutorial\steppableBasedMitosisPeriodicBC\steppableBasedMitosisPeriodicBC.cc3d" SetOutPath "$INSTDIR\Demos\CompuCellPythonTutorial\steppableBasedMitosisPeriodicBC\Simulation" File "D:\install_projects\3.7.2\Demos\CompuCellPythonTutorial\steppableBasedMitosisPeriodicBC\Simulation\steppableBasedMitosis.piff" File "D:\install_projects\3.7.2\Demos\CompuCellPythonTutorial\steppableBasedMitosisPeriodicBC\Simulation\steppableBasedMitosis.py" File "D:\install_projects\3.7.2\Demos\CompuCellPythonTutorial\steppableBasedMitosisPeriodicBC\Simulation\steppableBasedMitosis.xml" File "D:\install_projects\3.7.2\Demos\CompuCellPythonTutorial\steppableBasedMitosisPeriodicBC\Simulation\steppableBasedMitosisSteppables.py" SetOutPath "$INSTDIR\Demos\CompuCellPythonTutorial\SteppableCommunication" File "D:\install_projects\3.7.2\Demos\CompuCellPythonTutorial\SteppableCommunication\SteppableCommunication.cc3d" SetOutPath "$INSTDIR\Demos\CompuCellPythonTutorial\SteppableCommunication\Simulation" File "D:\install_projects\3.7.2\Demos\CompuCellPythonTutorial\SteppableCommunication\Simulation\SteppableCommunication.py" File "D:\install_projects\3.7.2\Demos\CompuCellPythonTutorial\SteppableCommunication\Simulation\SteppableCommunication.xml" File "D:\install_projects\3.7.2\Demos\CompuCellPythonTutorial\SteppableCommunication\Simulation\SteppableCommunicationSteppables.py" SetOutPath "$INSTDIR\Demos\CompuCellPythonTutorial\TemplateDir" File "D:\install_projects\3.7.2\Demos\CompuCellPythonTutorial\TemplateDir\TemplateDir.cc3d" SetOutPath "$INSTDIR\Demos\CompuCellPythonTutorial\TemplateDir\Simulation" File "D:\install_projects\3.7.2\Demos\CompuCellPythonTutorial\TemplateDir\Simulation\diffusion_2D.pulse.txt" File "D:\install_projects\3.7.2\Demos\CompuCellPythonTutorial\TemplateDir\Simulation\TemplatePluginExample.xml" File "D:\install_projects\3.7.2\Demos\CompuCellPythonTutorial\TemplateDir\Simulation\templateSteppabletest.py" SetOutPath "$INSTDIR\Demos\CompuCellPythonTutorial\vectorPlot" File "D:\install_projects\3.7.2\Demos\CompuCellPythonTutorial\vectorPlot\vectorPlot.cc3d" SetOutPath "$INSTDIR\Demos\CompuCellPythonTutorial\vectorPlot\Simulation" File "D:\install_projects\3.7.2\Demos\CompuCellPythonTutorial\vectorPlot\Simulation\bacterium_macrophage_2D_wall.piff" File "D:\install_projects\3.7.2\Demos\CompuCellPythonTutorial\vectorPlot\Simulation\vectorPlot.py" File "D:\install_projects\3.7.2\Demos\CompuCellPythonTutorial\vectorPlot\Simulation\vectorPlot.xml" File "D:\install_projects\3.7.2\Demos\CompuCellPythonTutorial\vectorPlot\Simulation\vectorPlotSteppables.py" SetOutPath "$INSTDIR\Demos\Models" SetOutPath "$INSTDIR\Demos\Models\amoebae" SetOutPath "$INSTDIR\Demos\Models\amoebae\amoebae_2D" File "D:\install_projects\3.7.2\Demos\Models\amoebae\amoebae_2D\amoebae_2D.cc3d" SetOutPath "$INSTDIR\Demos\Models\amoebae\amoebae_2D\Simulation" File "D:\install_projects\3.7.2\Demos\Models\amoebae\amoebae_2D\Simulation\amoebaConcentrationField_2D.txt" File "D:\install_projects\3.7.2\Demos\Models\amoebae\amoebae_2D\Simulation\amoebae_2D.piff" File "D:\install_projects\3.7.2\Demos\Models\amoebae\amoebae_2D\Simulation\amoebae_2D.xml" SetOutPath "$INSTDIR\Demos\Models\amoebae\amoebae_2D_PlayerSettings" File "D:\install_projects\3.7.2\Demos\Models\amoebae\amoebae_2D_PlayerSettings\amoebae_2D_PlayerSettings.cc3d" SetOutPath "$INSTDIR\Demos\Models\amoebae\amoebae_2D_PlayerSettings\Simulation" File "D:\install_projects\3.7.2\Demos\Models\amoebae\amoebae_2D_PlayerSettings\Simulation\amoebaConcentrationField_2D.txt" File "D:\install_projects\3.7.2\Demos\Models\amoebae\amoebae_2D_PlayerSettings\Simulation\amoebae_2D.piff" File "D:\install_projects\3.7.2\Demos\Models\amoebae\amoebae_2D_PlayerSettings\Simulation\amoebae_2D_PlayerSettings.xml" SetOutPath "$INSTDIR\Demos\Models\amoebae\amoebae_2D_secretion" File "D:\install_projects\3.7.2\Demos\Models\amoebae\amoebae_2D_secretion\amoebae_2D_secretion.cc3d" SetOutPath "$INSTDIR\Demos\Models\amoebae\amoebae_2D_secretion\Simulation" File "D:\install_projects\3.7.2\Demos\Models\amoebae\amoebae_2D_secretion\Simulation\amoebaConcentrationField_2D.txt" File "D:\install_projects\3.7.2\Demos\Models\amoebae\amoebae_2D_secretion\Simulation\amoebae_2D.piff" File "D:\install_projects\3.7.2\Demos\Models\amoebae\amoebae_2D_secretion\Simulation\amoebae_2D_secretion.xml" SetOutPath "$INSTDIR\Demos\Models\bacterium_macrophage" File "D:\install_projects\3.7.2\Demos\Models\bacterium_macrophage\bacterium_macrophage.cc3d" SetOutPath "$INSTDIR\Demos\Models\bacterium_macrophage\Simulation" File "D:\install_projects\3.7.2\Demos\Models\bacterium_macrophage\Simulation\bacterium_macrophage_2D.piff" File "D:\install_projects\3.7.2\Demos\Models\bacterium_macrophage\Simulation\bacterium_macrophage_2D.xml" File "D:\install_projects\3.7.2\Demos\Models\bacterium_macrophage\Simulation\bacterium_macrophage_2D_wall.piff" SetOutPath "$INSTDIR\Demos\Models\bacterium_macrophage_2D_steering" File "D:\install_projects\3.7.2\Demos\Models\bacterium_macrophage_2D_steering\bacterium_macrophage_2D_steering.cc3d" SetOutPath "$INSTDIR\Demos\Models\bacterium_macrophage_2D_steering\Simulation" File "D:\install_projects\3.7.2\Demos\Models\bacterium_macrophage_2D_steering\Simulation\bacterium_macrophage_2D_steering.py" File "D:\install_projects\3.7.2\Demos\Models\bacterium_macrophage_2D_steering\Simulation\bacterium_macrophage_2D_steering.xml" File "D:\install_projects\3.7.2\Demos\Models\bacterium_macrophage_2D_steering\Simulation\bacterium_macrophage_2D_steering_steppables.py" File "D:\install_projects\3.7.2\Demos\Models\bacterium_macrophage_2D_steering\Simulation\bacterium_macrophage_2D_wall.piff" SetOutPath "$INSTDIR\Demos\Models\cellsort" SetOutPath "$INSTDIR\Demos\Models\cellsort\cellsort_2D" File "D:\install_projects\3.7.2\Demos\Models\cellsort\cellsort_2D\cellsort_2D.cc3d" SetOutPath "$INSTDIR\Demos\Models\cellsort\cellsort_2D\Simulation" File "D:\install_projects\3.7.2\Demos\Models\cellsort\cellsort_2D\Simulation\cellsort_2D.xml" SetOutPath "$INSTDIR\Demos\Models\cellsort\cellsort_2D_growing_cells_mitosis_using_steppable" File "D:\install_projects\3.7.2\Demos\Models\cellsort\cellsort_2D_growing_cells_mitosis_using_steppable\cellsort_2D_growing_cells_mitosis_using_steppable.cc3d" SetOutPath "$INSTDIR\Demos\Models\cellsort\cellsort_2D_growing_cells_mitosis_using_steppable\Simulation" File "D:\install_projects\3.7.2\Demos\Models\cellsort\cellsort_2D_growing_cells_mitosis_using_steppable\Simulation\cellsort_2D_field.py" File "D:\install_projects\3.7.2\Demos\Models\cellsort\cellsort_2D_growing_cells_mitosis_using_steppable\Simulation\cellsort_2D_field.xml" File "D:\install_projects\3.7.2\Demos\Models\cellsort\cellsort_2D_growing_cells_mitosis_using_steppable\Simulation\cellsort_2D_field_modules.py" SetOutPath "$INSTDIR\Demos\Models\cellsort\cellsort_3D" File "D:\install_projects\3.7.2\Demos\Models\cellsort\cellsort_3D\cellsort_3D.cc3d" SetOutPath "$INSTDIR\Demos\Models\cellsort\cellsort_3D\Simulation" File "D:\install_projects\3.7.2\Demos\Models\cellsort\cellsort_3D\Simulation\cellsort_3D.xml" SetOutPath "$INSTDIR\Demos\Models\dicty_40x40" File "D:\install_projects\3.7.2\Demos\Models\dicty_40x40\dicty_40x40.cc3d" SetOutPath "$INSTDIR\Demos\Models\dicty_40x40\Simulation" File "D:\install_projects\3.7.2\Demos\Models\dicty_40x40\Simulation\dicty_try_40x40.xml" SetOutPath "$INSTDIR\Demos\Models\FitzHughNagumo" File "D:\install_projects\3.7.2\Demos\Models\FitzHughNagumo\FitzHughNagumo.cc3d" SetOutPath "$INSTDIR\Demos\Models\FitzHughNagumo\Simulation" File "D:\install_projects\3.7.2\Demos\Models\FitzHughNagumo\Simulation\FitzHughNagumo.xml" SetOutPath "$INSTDIR\Demos\Models\FitzHughNagumo_OpenCL" File "D:\install_projects\3.7.2\Demos\Models\FitzHughNagumo_OpenCL\FitzHughNagumo_OpenCL.cc3d" SetOutPath "$INSTDIR\Demos\Models\FitzHughNagumo_OpenCL\Simulation" File "D:\install_projects\3.7.2\Demos\Models\FitzHughNagumo_OpenCL\Simulation\FitzHughNagumo.xml" SetOutPath "$INSTDIR\Demos\Models\wetFoam" File "D:\install_projects\3.7.2\Demos\Models\wetFoam\wetFoam.cc3d" SetOutPath "$INSTDIR\Demos\Models\wetFoam\Simulation" File "D:\install_projects\3.7.2\Demos\Models\wetFoam\Simulation\wetFoam.py" File "D:\install_projects\3.7.2\Demos\Models\wetFoam\Simulation\wetFoam.xml" File "D:\install_projects\3.7.2\Demos\Models\wetFoam\Simulation\wetFoamSteppables.py" SetOutPath "$INSTDIR\Demos\Models\wetFoamDrainage" File "D:\install_projects\3.7.2\Demos\Models\wetFoamDrainage\wetFoamDrainage.cc3d" SetOutPath "$INSTDIR\Demos\Models\wetFoamDrainage\Simulation" File "D:\install_projects\3.7.2\Demos\Models\wetFoamDrainage\Simulation\wetFoamDrainage.py" File "D:\install_projects\3.7.2\Demos\Models\wetFoamDrainage\Simulation\wetFoamDrainage.xml" File "D:\install_projects\3.7.2\Demos\Models\wetFoamDrainage\Simulation\wetFoamDrainageSteppables.py" SetOutPath "$INSTDIR\Demos\ParameterScan" SetOutPath "$INSTDIR\Demos\ParameterScan\CellSorting" File "D:\install_projects\3.7.2\Demos\ParameterScan\CellSorting\CellSorting.cc3d" SetOutPath "$INSTDIR\Demos\ParameterScan\CellSorting\Simulation" File "D:\install_projects\3.7.2\Demos\ParameterScan\CellSorting\Simulation\CellSorting.py" File "D:\install_projects\3.7.2\Demos\ParameterScan\CellSorting\Simulation\CellSorting.xml" File "D:\install_projects\3.7.2\Demos\ParameterScan\CellSorting\Simulation\CellSortingSteppables.py" File "D:\install_projects\3.7.2\Demos\ParameterScan\CellSorting\Simulation\ParameterScanSpecs.xml" SetOutPath "$INSTDIR\Demos\PluginDemos" SetOutPath "$INSTDIR\Demos\PluginDemos\AdhesionFlexPython" File "D:\install_projects\3.7.2\Demos\PluginDemos\AdhesionFlexPython\AdhesionFlexPython.cc3d" SetOutPath "$INSTDIR\Demos\PluginDemos\AdhesionFlexPython\Simulation" File "D:\install_projects\3.7.2\Demos\PluginDemos\AdhesionFlexPython\Simulation\AdhesionFlex.py" File "D:\install_projects\3.7.2\Demos\PluginDemos\AdhesionFlexPython\Simulation\AdhesionFlexPython.xml" File "D:\install_projects\3.7.2\Demos\PluginDemos\AdhesionFlexPython\Simulation\AdhesionFlexSteppables.py" SetOutPath "$INSTDIR\Demos\PluginDemos\AdhesionFlexXML" File "D:\install_projects\3.7.2\Demos\PluginDemos\AdhesionFlexXML\AdhesionFlexXML.cc3d" SetOutPath "$INSTDIR\Demos\PluginDemos\AdhesionFlexXML\Simulation" File "D:\install_projects\3.7.2\Demos\PluginDemos\AdhesionFlexXML\Simulation\AdhesionFlex.xml" SetOutPath "$INSTDIR\Demos\PluginDemos\BoundaryMonitorExample" File "D:\install_projects\3.7.2\Demos\PluginDemos\BoundaryMonitorExample\BoundaryMonitorExample.cc3d" SetOutPath "$INSTDIR\Demos\PluginDemos\BoundaryMonitorExample\Simulation" File "D:\install_projects\3.7.2\Demos\PluginDemos\BoundaryMonitorExample\Simulation\bacterium_macrophage_2D_wall.piff" File "D:\install_projects\3.7.2\Demos\PluginDemos\BoundaryMonitorExample\Simulation\BoundaryMonitorExample.py" File "D:\install_projects\3.7.2\Demos\PluginDemos\BoundaryMonitorExample\Simulation\BoundaryMonitorExample.xml" File "D:\install_projects\3.7.2\Demos\PluginDemos\BoundaryMonitorExample\Simulation\BoundaryMonitorExampleSteppables.py" SetOutPath "$INSTDIR\Demos\PluginDemos\BoundaryPixelTrackerExample" File "D:\install_projects\3.7.2\Demos\PluginDemos\BoundaryPixelTrackerExample\BoundaryPixelTrackerExample.cc3d" SetOutPath "$INSTDIR\Demos\PluginDemos\BoundaryPixelTrackerExample\Simulation" File "D:\install_projects\3.7.2\Demos\PluginDemos\BoundaryPixelTrackerExample\Simulation\bacterium_macrophage_2D_wall.piff" File "D:\install_projects\3.7.2\Demos\PluginDemos\BoundaryPixelTrackerExample\Simulation\BoundaryPixelTrackerExample.py" File "D:\install_projects\3.7.2\Demos\PluginDemos\BoundaryPixelTrackerExample\Simulation\BoundaryPixelTrackerExample.xml" File "D:\install_projects\3.7.2\Demos\PluginDemos\BoundaryPixelTrackerExample\Simulation\BoundaryPixelTrackerExampleSteppables.py" SetOutPath "$INSTDIR\Demos\PluginDemos\chemotaxis_by_cell_id" File "D:\install_projects\3.7.2\Demos\PluginDemos\chemotaxis_by_cell_id\chemotaxis_by_cell_id.cc3d" SetOutPath "$INSTDIR\Demos\PluginDemos\chemotaxis_by_cell_id\Simulation" File "D:\install_projects\3.7.2\Demos\PluginDemos\chemotaxis_by_cell_id\Simulation\chemotaxis_by_cell_id.piff" File "D:\install_projects\3.7.2\Demos\PluginDemos\chemotaxis_by_cell_id\Simulation\chemotaxis_by_cell_id.py" File "D:\install_projects\3.7.2\Demos\PluginDemos\chemotaxis_by_cell_id\Simulation\chemotaxis_by_cell_id.xml" File "D:\install_projects\3.7.2\Demos\PluginDemos\chemotaxis_by_cell_id\Simulation\chemotaxis_by_cell_id_steppables.py" SetOutPath "$INSTDIR\Demos\PluginDemos\CompartmentExample" SetOutPath "$INSTDIR\Demos\PluginDemos\CompartmentExample\CompartmentExample" File "D:\install_projects\3.7.2\Demos\PluginDemos\CompartmentExample\CompartmentExample\CompartmentExample.cc3d" SetOutPath "$INSTDIR\Demos\PluginDemos\CompartmentExample\CompartmentExample\Simulation" File "D:\install_projects\3.7.2\Demos\PluginDemos\CompartmentExample\CompartmentExample\Simulation\3D_LINE_BASE.piff" File "D:\install_projects\3.7.2\Demos\PluginDemos\CompartmentExample\CompartmentExample\Simulation\CompartmentExample.xml" SetOutPath "$INSTDIR\Demos\PluginDemos\CompartmentExample\CompartmentExampleNewStyle" File "D:\install_projects\3.7.2\Demos\PluginDemos\CompartmentExample\CompartmentExampleNewStyle\CompartmentExampleNewStyle.cc3d" SetOutPath "$INSTDIR\Demos\PluginDemos\CompartmentExample\CompartmentExampleNewStyle\Simulation" File "D:\install_projects\3.7.2\Demos\PluginDemos\CompartmentExample\CompartmentExampleNewStyle\Simulation\3D_LINE_BASE.piff" File "D:\install_projects\3.7.2\Demos\PluginDemos\CompartmentExample\CompartmentExampleNewStyle\Simulation\CompartmentExampleNewStyle.xml" SetOutPath "$INSTDIR\Demos\PluginDemos\ConnectivityGlobalTest" SetOutPath "$INSTDIR\Demos\PluginDemos\ConnectivityGlobalTest\ConnectivityGlobalTest" File "D:\install_projects\3.7.2\Demos\PluginDemos\ConnectivityGlobalTest\ConnectivityGlobalTest\ConnectivityGlobalTest.cc3d" SetOutPath "$INSTDIR\Demos\PluginDemos\ConnectivityGlobalTest\ConnectivityGlobalTest\Simulation" File "D:\install_projects\3.7.2\Demos\PluginDemos\ConnectivityGlobalTest\ConnectivityGlobalTest\Simulation\ConnectivityGlobalTest.piff" File "D:\install_projects\3.7.2\Demos\PluginDemos\ConnectivityGlobalTest\ConnectivityGlobalTest\Simulation\ConnectivityGlobalTest.xml" SetOutPath "$INSTDIR\Demos\PluginDemos\ConnectivityGlobalTest\ConnectivityGlobalTestFragmentedCells" File "D:\install_projects\3.7.2\Demos\PluginDemos\ConnectivityGlobalTest\ConnectivityGlobalTestFragmentedCells\ConnectivityGlobalTest.cc3d" SetOutPath "$INSTDIR\Demos\PluginDemos\ConnectivityGlobalTest\ConnectivityGlobalTestFragmentedCells\Simulation" File "D:\install_projects\3.7.2\Demos\PluginDemos\ConnectivityGlobalTest\ConnectivityGlobalTestFragmentedCells\Simulation\ConnectivityGlobalTestFragmentedCells.piff" File "D:\install_projects\3.7.2\Demos\PluginDemos\ConnectivityGlobalTest\ConnectivityGlobalTestFragmentedCells\Simulation\ConnectivityGlobalTestFragmentedCells.xml" SetOutPath "$INSTDIR\Demos\PluginDemos\ConnectivityGlobalTestLocalSettings" File "D:\install_projects\3.7.2\Demos\PluginDemos\ConnectivityGlobalTestLocalSettings\ConnectivityGlobalTestLocalSettings.cc3d" SetOutPath "$INSTDIR\Demos\PluginDemos\ConnectivityGlobalTestLocalSettings\Simulation" File "D:\install_projects\3.7.2\Demos\PluginDemos\ConnectivityGlobalTestLocalSettings\Simulation\ConnectivityElongationSteppable.py" File "D:\install_projects\3.7.2\Demos\PluginDemos\ConnectivityGlobalTestLocalSettings\Simulation\ConnectivityTest.piff" File "D:\install_projects\3.7.2\Demos\PluginDemos\ConnectivityGlobalTestLocalSettings\Simulation\ConnectivityTest.py" File "D:\install_projects\3.7.2\Demos\PluginDemos\ConnectivityGlobalTestLocalSettings\Simulation\ConnectivityTest.xml" SetOutPath "$INSTDIR\Demos\PluginDemos\connectivityTest" File "D:\install_projects\3.7.2\Demos\PluginDemos\connectivityTest\connectivityTest.cc3d" SetOutPath "$INSTDIR\Demos\PluginDemos\connectivityTest\Simulation" File "D:\install_projects\3.7.2\Demos\PluginDemos\connectivityTest\Simulation\connectivityTest.piff" File "D:\install_projects\3.7.2\Demos\PluginDemos\connectivityTest\Simulation\connectivityTest.xml" SetOutPath "$INSTDIR\Demos\PluginDemos\ContactLocalProduct" SetOutPath "$INSTDIR\Demos\PluginDemos\ContactLocalProduct\ContactLocalProductExample" File "D:\install_projects\3.7.2\Demos\PluginDemos\ContactLocalProduct\ContactLocalProductExample\ContactLocalProductExample.cc3d" SetOutPath "$INSTDIR\Demos\PluginDemos\ContactLocalProduct\ContactLocalProductExample\Simulation" File "D:\install_projects\3.7.2\Demos\PluginDemos\ContactLocalProduct\ContactLocalProductExample\Simulation\ContactLocalProductExample.py" File "D:\install_projects\3.7.2\Demos\PluginDemos\ContactLocalProduct\ContactLocalProductExample\Simulation\ContactLocalProductExample.xml" File "D:\install_projects\3.7.2\Demos\PluginDemos\ContactLocalProduct\ContactLocalProductExample\Simulation\ContactLocalProductExampleModules.py" SetOutPath "$INSTDIR\Demos\PluginDemos\ContactLocalProduct\ContactLocalProductExampleCustomFunction" File "D:\install_projects\3.7.2\Demos\PluginDemos\ContactLocalProduct\ContactLocalProductExampleCustomFunction\ContactLocalProductExampleCustomFunction.cc3d" SetOutPath "$INSTDIR\Demos\PluginDemos\ContactLocalProduct\ContactLocalProductExampleCustomFunction\Simulation" File "D:\install_projects\3.7.2\Demos\PluginDemos\ContactLocalProduct\ContactLocalProductExampleCustomFunction\Simulation\ContactLocalProductExampleCustomFunction.py" File "D:\install_projects\3.7.2\Demos\PluginDemos\ContactLocalProduct\ContactLocalProductExampleCustomFunction\Simulation\ContactLocalProductExampleCustomFunction.xml" File "D:\install_projects\3.7.2\Demos\PluginDemos\ContactLocalProduct\ContactLocalProductExampleCustomFunction\Simulation\ContactLocalProductExampleModules.py" SetOutPath "$INSTDIR\Demos\PluginDemos\ContactLocalProduct\ContactLocalProductVisExample" File "D:\install_projects\3.7.2\Demos\PluginDemos\ContactLocalProduct\ContactLocalProductVisExample\ContactLocalProductVisExample.cc3d" SetOutPath "$INSTDIR\Demos\PluginDemos\ContactLocalProduct\ContactLocalProductVisExample\Simulation" File "D:\install_projects\3.7.2\Demos\PluginDemos\ContactLocalProduct\ContactLocalProductVisExample\Simulation\ContactLocalProductExampleModules.py" File "D:\install_projects\3.7.2\Demos\PluginDemos\ContactLocalProduct\ContactLocalProductVisExample\Simulation\ContactLocalProductVisExample.py" File "D:\install_projects\3.7.2\Demos\PluginDemos\ContactLocalProduct\ContactLocalProductVisExample\Simulation\ContactLocalProductVisExample.xml" SetOutPath "$INSTDIR\Demos\PluginDemos\ContactMultiCad" File "D:\install_projects\3.7.2\Demos\PluginDemos\ContactMultiCad\ContactMultiCad.cc3d" SetOutPath "$INSTDIR\Demos\PluginDemos\ContactMultiCad\Simulation" File "D:\install_projects\3.7.2\Demos\PluginDemos\ContactMultiCad\Simulation\ContactMultiCad.py" File "D:\install_projects\3.7.2\Demos\PluginDemos\ContactMultiCad\Simulation\ContactMultiCad.xml" File "D:\install_projects\3.7.2\Demos\PluginDemos\ContactMultiCad\Simulation\ContactMultiCadSteppables.py" SetOutPath "$INSTDIR\Demos\PluginDemos\ConvergentExtension" File "D:\install_projects\3.7.2\Demos\PluginDemos\ConvergentExtension\ConvergentExtension.cc3d" SetOutPath "$INSTDIR\Demos\PluginDemos\ConvergentExtension\Simulation" File "D:\install_projects\3.7.2\Demos\PluginDemos\ConvergentExtension\Simulation\ConvergentExtension.xml" SetOutPath "$INSTDIR\Demos\PluginDemos\Curvature" File "D:\install_projects\3.7.2\Demos\PluginDemos\Curvature\Curvature.cc3d" SetOutPath "$INSTDIR\Demos\PluginDemos\Curvature\Simulation" File "D:\install_projects\3.7.2\Demos\PluginDemos\Curvature\Simulation\curvature.piff" File "D:\install_projects\3.7.2\Demos\PluginDemos\Curvature\Simulation\Curvature.xml" SetOutPath "$INSTDIR\Demos\PluginDemos\CutomCellConstraints" File "D:\install_projects\3.7.2\Demos\PluginDemos\CutomCellConstraints\cellsort_2D_custom_constraints.cc3d" SetOutPath "$INSTDIR\Demos\PluginDemos\CutomCellConstraints\Simulation" File "D:\install_projects\3.7.2\Demos\PluginDemos\CutomCellConstraints\Simulation\cellsort_2D_custom_constraints.xml" SetOutPath "$INSTDIR\Demos\PluginDemos\elasticityTest" SetOutPath "$INSTDIR\Demos\PluginDemos\elasticityTest\elasticityTest" File "D:\install_projects\3.7.2\Demos\PluginDemos\elasticityTest\elasticityTest\elasticityTest.cc3d" SetOutPath "$INSTDIR\Demos\PluginDemos\elasticityTest\elasticityTest\Simulation" File "D:\install_projects\3.7.2\Demos\PluginDemos\elasticityTest\elasticityTest\Simulation\elasticityTest.piff" File "D:\install_projects\3.7.2\Demos\PluginDemos\elasticityTest\elasticityTest\Simulation\elasticityTest.xml" SetOutPath "$INSTDIR\Demos\PluginDemos\elasticityTest\elasticityTestFlexExternalPotential" File "D:\install_projects\3.7.2\Demos\PluginDemos\elasticityTest\elasticityTestFlexExternalPotential\elasticityTestFlexExternalPotential.cc3d" SetOutPath "$INSTDIR\Demos\PluginDemos\elasticityTest\elasticityTestFlexExternalPotential\Simulation" File "D:\install_projects\3.7.2\Demos\PluginDemos\elasticityTest\elasticityTestFlexExternalPotential\Simulation\elasticityTest.piff" File "D:\install_projects\3.7.2\Demos\PluginDemos\elasticityTest\elasticityTestFlexExternalPotential\Simulation\elasticityTestFlexExternalPotential.xml" SetOutPath "$INSTDIR\Demos\PluginDemos\elasticityTest\elasticityTestFlexExternalPotentialBoundaryWalker" File "D:\install_projects\3.7.2\Demos\PluginDemos\elasticityTest\elasticityTestFlexExternalPotentialBoundaryWalker\elasticityTestFlexExternalPotentialBoundaryWalker.cc3d" SetOutPath "$INSTDIR\Demos\PluginDemos\elasticityTest\elasticityTestFlexExternalPotentialBoundaryWalker\Simulation" File "D:\install_projects\3.7.2\Demos\PluginDemos\elasticityTest\elasticityTestFlexExternalPotentialBoundaryWalker\Simulation\elasticityTest.piff" File "D:\install_projects\3.7.2\Demos\PluginDemos\elasticityTest\elasticityTestFlexExternalPotentialBoundaryWalker\Simulation\elasticityTestFlexExternalPotentialBoundaryWalker.xml" SetOutPath "$INSTDIR\Demos\PluginDemos\elasticityTest_steering" File "D:\install_projects\3.7.2\Demos\PluginDemos\elasticityTest_steering\elasticityTest_steering.cc3d" SetOutPath "$INSTDIR\Demos\PluginDemos\elasticityTest_steering\Simulation" File "D:\install_projects\3.7.2\Demos\PluginDemos\elasticityTest_steering\Simulation\elasticityTest_steering.piff" File "D:\install_projects\3.7.2\Demos\PluginDemos\elasticityTest_steering\Simulation\elasticityTest_steering.py" File "D:\install_projects\3.7.2\Demos\PluginDemos\elasticityTest_steering\Simulation\elasticityTest_steering.xml" File "D:\install_projects\3.7.2\Demos\PluginDemos\elasticityTest_steering\Simulation\elasticityTest_steering_steppables.py" SetOutPath "$INSTDIR\Demos\PluginDemos\elongationFlexTest" File "D:\install_projects\3.7.2\Demos\PluginDemos\elongationFlexTest\elongationFlexTest.cc3d" SetOutPath "$INSTDIR\Demos\PluginDemos\elongationFlexTest\Simulation" File "D:\install_projects\3.7.2\Demos\PluginDemos\elongationFlexTest\Simulation\elongationFlexSteppables.py" File "D:\install_projects\3.7.2\Demos\PluginDemos\elongationFlexTest\Simulation\elongationFlexTest.piff" File "D:\install_projects\3.7.2\Demos\PluginDemos\elongationFlexTest\Simulation\elongationFlexTest.py" File "D:\install_projects\3.7.2\Demos\PluginDemos\elongationFlexTest\Simulation\elongationFlexTest.xml" SetOutPath "$INSTDIR\Demos\PluginDemos\elongationTest" SetOutPath "$INSTDIR\Demos\PluginDemos\elongationTest\elongationTest" File "D:\install_projects\3.7.2\Demos\PluginDemos\elongationTest\elongationTest\elongationTest.cc3d" SetOutPath "$INSTDIR\Demos\PluginDemos\elongationTest\elongationTest\Simulation" File "D:\install_projects\3.7.2\Demos\PluginDemos\elongationTest\elongationTest\Simulation\elongationTest.piff" File "D:\install_projects\3.7.2\Demos\PluginDemos\elongationTest\elongationTest\Simulation\elongationTest.xml" SetOutPath "$INSTDIR\Demos\PluginDemos\elongationTest\elongationTest3D" File "D:\install_projects\3.7.2\Demos\PluginDemos\elongationTest\elongationTest3D\elongationTest3D.cc3d" SetOutPath "$INSTDIR\Demos\PluginDemos\elongationTest\elongationTest3D\Simulation" File "D:\install_projects\3.7.2\Demos\PluginDemos\elongationTest\elongationTest3D\Simulation\elongationTest3D.piff" File "D:\install_projects\3.7.2\Demos\PluginDemos\elongationTest\elongationTest3D\Simulation\elongationTest3D.xml" SetOutPath "$INSTDIR\Demos\PluginDemos\elongationTest_steering" File "D:\install_projects\3.7.2\Demos\PluginDemos\elongationTest_steering\elongationTest_steering.cc3d" SetOutPath "$INSTDIR\Demos\PluginDemos\elongationTest_steering\Simulation" File "D:\install_projects\3.7.2\Demos\PluginDemos\elongationTest_steering\Simulation\elongationTest_steering.piff" File "D:\install_projects\3.7.2\Demos\PluginDemos\elongationTest_steering\Simulation\elongationTest_steering.py" File "D:\install_projects\3.7.2\Demos\PluginDemos\elongationTest_steering\Simulation\elongationTest_steering.xml" File "D:\install_projects\3.7.2\Demos\PluginDemos\elongationTest_steering\Simulation\elongationTest_steering_steppables.py" SetOutPath "$INSTDIR\Demos\PluginDemos\FlexCellConstraints" File "D:\install_projects\3.7.2\Demos\PluginDemos\FlexCellConstraints\cellsort_2D_flex.cc3d" SetOutPath "$INSTDIR\Demos\PluginDemos\FlexCellConstraints\Simulation" File "D:\install_projects\3.7.2\Demos\PluginDemos\FlexCellConstraints\Simulation\cellsort_2D_flex.xml" SetOutPath "$INSTDIR\Demos\PluginDemos\FocalPointPlasticity" SetOutPath "$INSTDIR\Demos\PluginDemos\FocalPointPlasticity\FocalPointPlasticity" File "D:\install_projects\3.7.2\Demos\PluginDemos\FocalPointPlasticity\FocalPointPlasticity\FocalPointPlasticity.cc3d" SetOutPath "$INSTDIR\Demos\PluginDemos\FocalPointPlasticity\FocalPointPlasticity\Simulation" File "D:\install_projects\3.7.2\Demos\PluginDemos\FocalPointPlasticity\FocalPointPlasticity\Simulation\FocalPointInit.piff" File "D:\install_projects\3.7.2\Demos\PluginDemos\FocalPointPlasticity\FocalPointPlasticity\Simulation\FocalPointPlasticity.xml" SetOutPath "$INSTDIR\Demos\PluginDemos\FocalPointPlasticity\FocalPointPlasticityCompartments" File "D:\install_projects\3.7.2\Demos\PluginDemos\FocalPointPlasticity\FocalPointPlasticityCompartments\FocalPointPlasticityCompartments.cc3d" SetOutPath "$INSTDIR\Demos\PluginDemos\FocalPointPlasticity\FocalPointPlasticityCompartments\Simulation" File "D:\install_projects\3.7.2\Demos\PluginDemos\FocalPointPlasticity\FocalPointPlasticityCompartments\Simulation\FocalPointPlasticityCompartments.xml" File "D:\install_projects\3.7.2\Demos\PluginDemos\FocalPointPlasticity\FocalPointPlasticityCompartments\Simulation\plasticityCompartments.piff" SetOutPath "$INSTDIR\Demos\PluginDemos\FocalPointPlasticityCompartmentsPython" File "D:\install_projects\3.7.2\Demos\PluginDemos\FocalPointPlasticityCompartmentsPython\FocalPointPlasticityCompartmentsPython.cc3d" SetOutPath "$INSTDIR\Demos\PluginDemos\FocalPointPlasticityCompartmentsPython\Simulation" File "D:\install_projects\3.7.2\Demos\PluginDemos\FocalPointPlasticityCompartmentsPython\Simulation\FocalPointPlasticityCompartments.py" File "D:\install_projects\3.7.2\Demos\PluginDemos\FocalPointPlasticityCompartmentsPython\Simulation\FocalPointPlasticityCompartments.xml" File "D:\install_projects\3.7.2\Demos\PluginDemos\FocalPointPlasticityCompartmentsPython\Simulation\FocalPointPlasticityCompartmentsSteppables.py" File "D:\install_projects\3.7.2\Demos\PluginDemos\FocalPointPlasticityCompartmentsPython\Simulation\plasticityCompartments.piff" SetOutPath "$INSTDIR\Demos\PluginDemos\FocalPointPlasticityCustom" File "D:\install_projects\3.7.2\Demos\PluginDemos\FocalPointPlasticityCustom\FocalPointPlasticityCustom.cc3d" SetOutPath "$INSTDIR\Demos\PluginDemos\FocalPointPlasticityCustom\Simulation" File "D:\install_projects\3.7.2\Demos\PluginDemos\FocalPointPlasticityCustom\Simulation\FocalPointPlasticityCustom.piff" File "D:\install_projects\3.7.2\Demos\PluginDemos\FocalPointPlasticityCustom\Simulation\FocalPointPlasticityCustom.xml" SetOutPath "$INSTDIR\Demos\PluginDemos\FocalPointPlasticityPython" File "D:\install_projects\3.7.2\Demos\PluginDemos\FocalPointPlasticityPython\FocalPointPlasticityPython.cc3d" SetOutPath "$INSTDIR\Demos\PluginDemos\FocalPointPlasticityPython\Simulation" File "D:\install_projects\3.7.2\Demos\PluginDemos\FocalPointPlasticityPython\Simulation\FocalPointInit.piff" File "D:\install_projects\3.7.2\Demos\PluginDemos\FocalPointPlasticityPython\Simulation\FocalPointPlasticity.py" File "D:\install_projects\3.7.2\Demos\PluginDemos\FocalPointPlasticityPython\Simulation\FocalPointPlasticity.xml" File "D:\install_projects\3.7.2\Demos\PluginDemos\FocalPointPlasticityPython\Simulation\FocalPointPlasticitySteppables.py" SetOutPath "$INSTDIR\Demos\PluginDemos\FPPDemo" File "D:\install_projects\3.7.2\Demos\PluginDemos\FPPDemo\FPPDemo.cc3d" SetOutPath "$INSTDIR\Demos\PluginDemos\FPPDemo\Simulation" File "D:\install_projects\3.7.2\Demos\PluginDemos\FPPDemo\Simulation\FocalPointInit.piff" File "D:\install_projects\3.7.2\Demos\PluginDemos\FPPDemo\Simulation\FocalPointPlasticity.py" File "D:\install_projects\3.7.2\Demos\PluginDemos\FPPDemo\Simulation\FocalPointPlasticity.xml" File "D:\install_projects\3.7.2\Demos\PluginDemos\FPPDemo\Simulation\FocalPointPlasticitySteppables.py" SetOutPath "$INSTDIR\Demos\PluginDemos\GlobalBoundaryPixelTracker" File "D:\install_projects\3.7.2\Demos\PluginDemos\GlobalBoundaryPixelTracker\cellsort_2D_boundary.cc3d" SetOutPath "$INSTDIR\Demos\PluginDemos\GlobalBoundaryPixelTracker\Simulation" File "D:\install_projects\3.7.2\Demos\PluginDemos\GlobalBoundaryPixelTracker\Simulation\cellsort_2D_boundary.xml" SetOutPath "$INSTDIR\Demos\PluginDemos\MomentOfInertia" SetOutPath "$INSTDIR\Demos\PluginDemos\MomentOfInertia\MomentOfInertia" File "D:\install_projects\3.7.2\Demos\PluginDemos\MomentOfInertia\MomentOfInertia\MomentOfInertia.cc3d" SetOutPath "$INSTDIR\Demos\PluginDemos\MomentOfInertia\MomentOfInertia\Simulation" File "D:\install_projects\3.7.2\Demos\PluginDemos\MomentOfInertia\MomentOfInertia\Simulation\MomentOfInertia.py" File "D:\install_projects\3.7.2\Demos\PluginDemos\MomentOfInertia\MomentOfInertia\Simulation\MomentOfInertia.xml" File "D:\install_projects\3.7.2\Demos\PluginDemos\MomentOfInertia\MomentOfInertia\Simulation\MomentOfInertiaSteppables.py" SetOutPath "$INSTDIR\Demos\PluginDemos\MomentOfInertia\MomentOfInertia3D" File "D:\install_projects\3.7.2\Demos\PluginDemos\MomentOfInertia\MomentOfInertia3D\MomentOfInertia3D.cc3d" SetOutPath "$INSTDIR\Demos\PluginDemos\MomentOfInertia\MomentOfInertia3D\Simulation" File "D:\install_projects\3.7.2\Demos\PluginDemos\MomentOfInertia\MomentOfInertia3D\Simulation\MomentOfInertia3D.py" File "D:\install_projects\3.7.2\Demos\PluginDemos\MomentOfInertia\MomentOfInertia3D\Simulation\MomentOfInertia3D.xml" File "D:\install_projects\3.7.2\Demos\PluginDemos\MomentOfInertia\MomentOfInertia3D\Simulation\MomentOfInertia3DSteppables.py" SetOutPath "$INSTDIR\Demos\PluginDemos\oriented-cellsort" File "D:\install_projects\3.7.2\Demos\PluginDemos\oriented-cellsort\oriented-cellsort.cc3d" SetOutPath "$INSTDIR\Demos\PluginDemos\oriented-cellsort\Simulation" File "D:\install_projects\3.7.2\Demos\PluginDemos\oriented-cellsort\Simulation\oriented-cellsort.xml" SetOutPath "$INSTDIR\Demos\PluginDemos\PixelTrackerExample" File "D:\install_projects\3.7.2\Demos\PluginDemos\PixelTrackerExample\PixelTrackerExample.cc3d" SetOutPath "$INSTDIR\Demos\PluginDemos\PixelTrackerExample\Simulation" File "D:\install_projects\3.7.2\Demos\PluginDemos\PixelTrackerExample\Simulation\bacterium_macrophage_2D_wall.piff" File "D:\install_projects\3.7.2\Demos\PluginDemos\PixelTrackerExample\Simulation\PixelTrackerExample.py" File "D:\install_projects\3.7.2\Demos\PluginDemos\PixelTrackerExample\Simulation\PixelTrackerExample.xml" File "D:\install_projects\3.7.2\Demos\PluginDemos\PixelTrackerExample\Simulation\PixelTrackerExampleSteppables.py" SetOutPath "$INSTDIR\Demos\PluginDemos\PolarizationOrientationExample" File "D:\install_projects\3.7.2\Demos\PluginDemos\PolarizationOrientationExample\PolarizationOrientationExample.cc3d" SetOutPath "$INSTDIR\Demos\PluginDemos\PolarizationOrientationExample\Simulation" File "D:\install_projects\3.7.2\Demos\PluginDemos\PolarizationOrientationExample\Simulation\PolarizationOrientationExample.py" File "D:\install_projects\3.7.2\Demos\PluginDemos\PolarizationOrientationExample\Simulation\PolarizationOrientationExample.xml" File "D:\install_projects\3.7.2\Demos\PluginDemos\PolarizationOrientationExample\Simulation\PolarizationOrientationExampleSteppables.py" SetOutPath "$INSTDIR\Demos\PluginDemos\RandomBlobInitializer" File "D:\install_projects\3.7.2\Demos\PluginDemos\RandomBlobInitializer\randomBlobInitializer.cc3d" SetOutPath "$INSTDIR\Demos\PluginDemos\RandomBlobInitializer\Simulation" File "D:\install_projects\3.7.2\Demos\PluginDemos\RandomBlobInitializer\Simulation\randomBlobInitializer.xml" SetOutPath "$INSTDIR\Demos\PluginDemos\RandomFieldInitializer" File "D:\install_projects\3.7.2\Demos\PluginDemos\RandomFieldInitializer\randomFieldInitializer.cc3d" SetOutPath "$INSTDIR\Demos\PluginDemos\RandomFieldInitializer\Simulation" File "D:\install_projects\3.7.2\Demos\PluginDemos\RandomFieldInitializer\Simulation\randomFieldInitializer.xml" SetOutPath "$INSTDIR\Demos\PluginDemos\viscosity" File "D:\install_projects\3.7.2\Demos\PluginDemos\viscosity\viscosityDemo.cc3d" SetOutPath "$INSTDIR\Demos\PluginDemos\viscosity\Simulation" File "D:\install_projects\3.7.2\Demos\PluginDemos\viscosity\Simulation\viscosityDemo.xml" SetOutPath "$INSTDIR\Demos\SBMLSolverExamples" SetOutPath "$INSTDIR\Demos\SBMLSolverExamples\DeltaNotch" File "D:\install_projects\3.7.2\Demos\SBMLSolverExamples\DeltaNotch\DeltaNotch.cc3d" SetOutPath "$INSTDIR\Demos\SBMLSolverExamples\DeltaNotch\Simulation" File "D:\install_projects\3.7.2\Demos\SBMLSolverExamples\DeltaNotch\Simulation\DeltaNotch.py" File "D:\install_projects\3.7.2\Demos\SBMLSolverExamples\DeltaNotch\Simulation\DeltaNotchSteppables.py" File "D:\install_projects\3.7.2\Demos\SBMLSolverExamples\DeltaNotch\Simulation\DN_Collier.sbml" SetOutPath "$INSTDIR\Demos\SBMLSolverExamples\SBMLSolver" File "D:\install_projects\3.7.2\Demos\SBMLSolverExamples\SBMLSolver\SBMLSolver.cc3d" SetOutPath "$INSTDIR\Demos\SBMLSolverExamples\SBMLSolver\Simulation" File "D:\install_projects\3.7.2\Demos\SBMLSolverExamples\SBMLSolver\Simulation\SBMLSolver.py" File "D:\install_projects\3.7.2\Demos\SBMLSolverExamples\SBMLSolver\Simulation\SBMLSolver.xml" File "D:\install_projects\3.7.2\Demos\SBMLSolverExamples\SBMLSolver\Simulation\SBMLSolverSteppables.py" File "D:\install_projects\3.7.2\Demos\SBMLSolverExamples\SBMLSolver\Simulation\test_1.xml" SetOutPath "$INSTDIR\Demos\SBMLSolverExamples\SBMLSolverOscilatorDemo" File "D:\install_projects\3.7.2\Demos\SBMLSolverExamples\SBMLSolverOscilatorDemo\SBMLSolverOscilatorDemo.cc3d" SetOutPath "$INSTDIR\Demos\SBMLSolverExamples\SBMLSolverOscilatorDemo\Simulation" File "D:\install_projects\3.7.2\Demos\SBMLSolverExamples\SBMLSolverOscilatorDemo\Simulation\oscli.sbml" File "D:\install_projects\3.7.2\Demos\SBMLSolverExamples\SBMLSolverOscilatorDemo\Simulation\SBMLSolverOscilatorDemo.py" File "D:\install_projects\3.7.2\Demos\SBMLSolverExamples\SBMLSolverOscilatorDemo\Simulation\SBMLSolverOscilatorDemo.xml" File "D:\install_projects\3.7.2\Demos\SBMLSolverExamples\SBMLSolverOscilatorDemo\Simulation\SBMLSolverOscilatorDemoSteppables.py" SetOutPath "$INSTDIR\Demos\SimulationSettings" SetOutPath "$INSTDIR\Demos\SimulationSettings\FluctuationAmplitude" File "D:\install_projects\3.7.2\Demos\SimulationSettings\FluctuationAmplitude\cellsort_2D_FluctuationAmplitude.cc3d" SetOutPath "$INSTDIR\Demos\SimulationSettings\FluctuationAmplitude\Simulation" File "D:\install_projects\3.7.2\Demos\SimulationSettings\FluctuationAmplitude\Simulation\cellsort_2D_FluctuationAmplitude.xml" SetOutPath "$INSTDIR\Demos\SimulationSettings\FluctuationAmplitudePython" File "D:\install_projects\3.7.2\Demos\SimulationSettings\FluctuationAmplitudePython\FluctuationAmplitude.cc3d" SetOutPath "$INSTDIR\Demos\SimulationSettings\FluctuationAmplitudePython\Simulation" File "D:\install_projects\3.7.2\Demos\SimulationSettings\FluctuationAmplitudePython\Simulation\FluctuationAmplitude.py" File "D:\install_projects\3.7.2\Demos\SimulationSettings\FluctuationAmplitudePython\Simulation\FluctuationAmplitude.xml" File "D:\install_projects\3.7.2\Demos\SimulationSettings\FluctuationAmplitudePython\Simulation\FluctuationAmplitudeSteppables.py" SetOutPath "$INSTDIR\Demos\SimulationSettings\HexLattice" File "D:\install_projects\3.7.2\Demos\SimulationSettings\HexLattice\cellsort_2D_hex.cc3d" SetOutPath "$INSTDIR\Demos\SimulationSettings\HexLattice\Simulation" File "D:\install_projects\3.7.2\Demos\SimulationSettings\HexLattice\Simulation\cellsort_2D_hex.xml" SetOutPath "$INSTDIR\Demos\SimulationSettings\ParallelCC3DExamples" SetOutPath "$INSTDIR\Demos\SimulationSettings\ParallelCC3DExamples\cellsort_2D_open_mp" File "D:\install_projects\3.7.2\Demos\SimulationSettings\ParallelCC3DExamples\cellsort_2D_open_mp\cellsort_2D_open_mp.cc3d" SetOutPath "$INSTDIR\Demos\SimulationSettings\ParallelCC3DExamples\cellsort_2D_open_mp\Simulation" File "D:\install_projects\3.7.2\Demos\SimulationSettings\ParallelCC3DExamples\cellsort_2D_open_mp\Simulation\cellsort_2D_open_mp.xml" SetOutPath "$INSTDIR\Demos\SimulationSettings\ParallelCC3DExamples\cellsort_3D_open_mp" File "D:\install_projects\3.7.2\Demos\SimulationSettings\ParallelCC3DExamples\cellsort_3D_open_mp\cellsort_3D_open_mp.cc3d" SetOutPath "$INSTDIR\Demos\SimulationSettings\ParallelCC3DExamples\cellsort_3D_open_mp\Simulation" File "D:\install_projects\3.7.2\Demos\SimulationSettings\ParallelCC3DExamples\cellsort_3D_open_mp\Simulation\cellsort_3D_open_mp.xml" SetOutPath "$INSTDIR\Demos\SimulationSettings\ParallelCC3DExamples\diffusion-3D" File "D:\install_projects\3.7.2\Demos\SimulationSettings\ParallelCC3DExamples\diffusion-3D\diffusion-3D.cc3d" SetOutPath "$INSTDIR\Demos\SimulationSettings\ParallelCC3DExamples\diffusion-3D\Simulation" File "D:\install_projects\3.7.2\Demos\SimulationSettings\ParallelCC3DExamples\diffusion-3D\Simulation\diffusion-3D.py" File "D:\install_projects\3.7.2\Demos\SimulationSettings\ParallelCC3DExamples\diffusion-3D\Simulation\diffusion_3D.pulse.txt" SetOutPath "$INSTDIR\Demos\SimulationSettings\ParallelCC3DExamples\DynamicNumberOfProcessors" File "D:\install_projects\3.7.2\Demos\SimulationSettings\ParallelCC3DExamples\DynamicNumberOfProcessors\DynamicNumberOfProcessors.cc3d" SetOutPath "$INSTDIR\Demos\SimulationSettings\ParallelCC3DExamples\DynamicNumberOfProcessors\Simulation" File "D:\install_projects\3.7.2\Demos\SimulationSettings\ParallelCC3DExamples\DynamicNumberOfProcessors\Simulation\DynamicNumberOfProcessors.py" File "D:\install_projects\3.7.2\Demos\SimulationSettings\ParallelCC3DExamples\DynamicNumberOfProcessors\Simulation\DynamicNumberOfProcessors.xml" File "D:\install_projects\3.7.2\Demos\SimulationSettings\ParallelCC3DExamples\DynamicNumberOfProcessors\Simulation\DynamicNumberOfProcessorsSteppables.py" SetOutPath "$INSTDIR\Demos\SimulationSettings\ParallelCC3DExamples\elasticityTest" File "D:\install_projects\3.7.2\Demos\SimulationSettings\ParallelCC3DExamples\elasticityTest\elasticityTest.cc3d" SetOutPath "$INSTDIR\Demos\SimulationSettings\ParallelCC3DExamples\elasticityTest\Simulation" File "D:\install_projects\3.7.2\Demos\SimulationSettings\ParallelCC3DExamples\elasticityTest\Simulation\elasticityTest.piff" File "D:\install_projects\3.7.2\Demos\SimulationSettings\ParallelCC3DExamples\elasticityTest\Simulation\elasticityTest.xml" SetOutPath "$INSTDIR\Demos\SimulationSettings\ParallelCC3DExamples\FocalPointPlasticityCompartments" File "D:\install_projects\3.7.2\Demos\SimulationSettings\ParallelCC3DExamples\FocalPointPlasticityCompartments\FocalPointPlasticityCompartments.cc3d" SetOutPath "$INSTDIR\Demos\SimulationSettings\ParallelCC3DExamples\FocalPointPlasticityCompartments\Simulation" File "D:\install_projects\3.7.2\Demos\SimulationSettings\ParallelCC3DExamples\FocalPointPlasticityCompartments\Simulation\FocalPointPlasticityCompartments.xml" File "D:\install_projects\3.7.2\Demos\SimulationSettings\ParallelCC3DExamples\FocalPointPlasticityCompartments\Simulation\plasticityCompartments.piff" SetOutPath "$INSTDIR\Demos\SimulationSettings\ParameterUnits" File "D:\install_projects\3.7.2\Demos\SimulationSettings\ParameterUnits\cellsort_2D_units.cc3d" SetOutPath "$INSTDIR\Demos\SimulationSettings\ParameterUnits\Simulation" File "D:\install_projects\3.7.2\Demos\SimulationSettings\ParameterUnits\Simulation\cellsort_2D_units.xml" SetOutPath "$INSTDIR\Demos\SimulationSettings\PlayerSettings" File "D:\install_projects\3.7.2\Demos\SimulationSettings\PlayerSettings\cellsort_2D_PlayerSettings.cc3d" SetOutPath "$INSTDIR\Demos\SimulationSettings\PlayerSettings\Simulation" File "D:\install_projects\3.7.2\Demos\SimulationSettings\PlayerSettings\Simulation\cellsort_2D_PlayerSettings.xml" SetOutPath "$INSTDIR\Demos\SimulationSettings\SimulationStatistics" SetOutPath "$INSTDIR\Demos\SimulationSettings\SimulationStatistics\cellsort_2D_statistics" File "D:\install_projects\3.7.2\Demos\SimulationSettings\SimulationStatistics\cellsort_2D_statistics\cellsort_2D_statistics.cc3d" SetOutPath "$INSTDIR\Demos\SimulationSettings\SimulationStatistics\cellsort_2D_statistics\Simulation" File "D:\install_projects\3.7.2\Demos\SimulationSettings\SimulationStatistics\cellsort_2D_statistics\Simulation\cellsort_2D_statistics.xml" SetOutPath "$INSTDIR\Demos\SimulationSettings\SimulationStatistics\cellsort_2D_statistics_spin_flip" File "D:\install_projects\3.7.2\Demos\SimulationSettings\SimulationStatistics\cellsort_2D_statistics_spin_flip\cellsort_2D_statistics_spin_flip.cc3d" SetOutPath "$INSTDIR\Demos\SimulationSettings\SimulationStatistics\cellsort_2D_statistics_spin_flip\Simulation" File "D:\install_projects\3.7.2\Demos\SimulationSettings\SimulationStatistics\cellsort_2D_statistics_spin_flip\Simulation\cellsort_2D_statistics_spin_flip.xml" SetOutPath "$INSTDIR\Demos\SimulationSettings\Steering" File "D:\install_projects\3.7.2\Demos\SimulationSettings\Steering\cellsort_2D_steering.cc3d" SetOutPath "$INSTDIR\Demos\SimulationSettings\Steering\Simulation" File "D:\install_projects\3.7.2\Demos\SimulationSettings\Steering\Simulation\cellsort_2D_steering.py" File "D:\install_projects\3.7.2\Demos\SimulationSettings\Steering\Simulation\cellsort_2D_steering.xml" File "D:\install_projects\3.7.2\Demos\SimulationSettings\Steering\Simulation\cellsort_2D_steering_steppables.py" SetOutPath "$INSTDIR\Demos\SimulationSettings\VariableMotility" File "D:\install_projects\3.7.2\Demos\SimulationSettings\VariableMotility\cellsort_2D_variable_motility.cc3d" SetOutPath "$INSTDIR\Demos\SimulationSettings\VariableMotility\Simulation" File "D:\install_projects\3.7.2\Demos\SimulationSettings\VariableMotility\Simulation\cellsort_2D_variable_motility.xml" SetOutPath "$INSTDIR\Demos\SteppableDemos" SetOutPath "$INSTDIR\Demos\SteppableDemos\BoxWatcher" File "D:\install_projects\3.7.2\Demos\SteppableDemos\BoxWatcher\cellsort_2D_box_watcher.cc3d" SetOutPath "$INSTDIR\Demos\SteppableDemos\BoxWatcher\Simulation" File "D:\install_projects\3.7.2\Demos\SteppableDemos\BoxWatcher\Simulation\cellsort_2D_box_watcher.xml" SetOutPath "$INSTDIR\Demos\SteppableDemos\DiffusionSolverFE" SetOutPath "$INSTDIR\Demos\SteppableDemos\DiffusionSolverFE\DiffusionSolverFE" File "D:\install_projects\3.7.2\Demos\SteppableDemos\DiffusionSolverFE\DiffusionSolverFE\DiffusionSolverFE.cc3d" SetOutPath "$INSTDIR\Demos\SteppableDemos\DiffusionSolverFE\DiffusionSolverFE\Simulation" File "D:\install_projects\3.7.2\Demos\SteppableDemos\DiffusionSolverFE\DiffusionSolverFE\Simulation\bacterium_macrophage.piff" File "D:\install_projects\3.7.2\Demos\SteppableDemos\DiffusionSolverFE\DiffusionSolverFE\Simulation\DiffusionSolverFE.xml" SetOutPath "$INSTDIR\Demos\SteppableDemos\DiffusionSolverFE\DiffusionSolverFE_3D" File "D:\install_projects\3.7.2\Demos\SteppableDemos\DiffusionSolverFE\DiffusionSolverFE_3D\DiffusionSolverFE_3D.cc3d" SetOutPath "$INSTDIR\Demos\SteppableDemos\DiffusionSolverFE\DiffusionSolverFE_3D\Simulation" File "D:\install_projects\3.7.2\Demos\SteppableDemos\DiffusionSolverFE\DiffusionSolverFE_3D\Simulation\DiffusionSolverFE_3D.txt" File "D:\install_projects\3.7.2\Demos\SteppableDemos\DiffusionSolverFE\DiffusionSolverFE_3D\Simulation\DiffusionSolverFE_3D.xml" SetOutPath "$INSTDIR\Demos\SteppableDemos\DiffusionSolverFE\diffusion_2D_scale" File "D:\install_projects\3.7.2\Demos\SteppableDemos\DiffusionSolverFE\diffusion_2D_scale\diffusion_2D_scale.cc3d" SetOutPath "$INSTDIR\Demos\SteppableDemos\DiffusionSolverFE\diffusion_2D_scale\Simulation" File "D:\install_projects\3.7.2\Demos\SteppableDemos\DiffusionSolverFE\diffusion_2D_scale\Simulation\diffusion_2D.pulse.txt" File "D:\install_projects\3.7.2\Demos\SteppableDemos\DiffusionSolverFE\diffusion_2D_scale\Simulation\diffusion_2D_scale.xml" SetOutPath "$INSTDIR\Demos\SteppableDemos\DiffusionSolverFE\diffusion_2D_scale_wall" File "D:\install_projects\3.7.2\Demos\SteppableDemos\DiffusionSolverFE\diffusion_2D_scale_wall\diffusion_2D_scale_wall.cc3d" SetOutPath "$INSTDIR\Demos\SteppableDemos\DiffusionSolverFE\diffusion_2D_scale_wall\Simulation" File "D:\install_projects\3.7.2\Demos\SteppableDemos\DiffusionSolverFE\diffusion_2D_scale_wall\Simulation\diffusion_2D_scale_wall.piff" File "D:\install_projects\3.7.2\Demos\SteppableDemos\DiffusionSolverFE\diffusion_2D_scale_wall\Simulation\diffusion_2D_scale_wall.pulse.txt" File "D:\install_projects\3.7.2\Demos\SteppableDemos\DiffusionSolverFE\diffusion_2D_scale_wall\Simulation\diffusion_2D_scale_wall.xml" SetOutPath "$INSTDIR\Demos\SteppableDemos\DiffusionSolverFE\diffusion_3D_scale_wall" File "D:\install_projects\3.7.2\Demos\SteppableDemos\DiffusionSolverFE\diffusion_3D_scale_wall\diffusion_3D_scale_wall.cc3d" SetOutPath "$INSTDIR\Demos\SteppableDemos\DiffusionSolverFE\diffusion_3D_scale_wall\Simulation" File "D:\install_projects\3.7.2\Demos\SteppableDemos\DiffusionSolverFE\diffusion_3D_scale_wall\Simulation\diffusion_3D_scale_wall.piff" File "D:\install_projects\3.7.2\Demos\SteppableDemos\DiffusionSolverFE\diffusion_3D_scale_wall\Simulation\diffusion_3D_scale_wall.pulse.txt" File "D:\install_projects\3.7.2\Demos\SteppableDemos\DiffusionSolverFE\diffusion_3D_scale_wall\Simulation\diffusion_3D_scale_wall.xml" SetOutPath "$INSTDIR\Demos\SteppableDemos\DiffusionSolverFE_OpenCL" SetOutPath "$INSTDIR\Demos\SteppableDemos\DiffusionSolverFE_OpenCL\DiffusionSolverFE_OpenCL" File "D:\install_projects\3.7.2\Demos\SteppableDemos\DiffusionSolverFE_OpenCL\DiffusionSolverFE_OpenCL\DiffusionSolverFE_OpenCL.cc3d" SetOutPath "$INSTDIR\Demos\SteppableDemos\DiffusionSolverFE_OpenCL\DiffusionSolverFE_OpenCL\Simulation" File "D:\install_projects\3.7.2\Demos\SteppableDemos\DiffusionSolverFE_OpenCL\DiffusionSolverFE_OpenCL\Simulation\bacterium_macrophage.piff" File "D:\install_projects\3.7.2\Demos\SteppableDemos\DiffusionSolverFE_OpenCL\DiffusionSolverFE_OpenCL\Simulation\diffusion_2D_scale_OpenCL.txt" File "D:\install_projects\3.7.2\Demos\SteppableDemos\DiffusionSolverFE_OpenCL\DiffusionSolverFE_OpenCL\Simulation\diffusion_2D_scale_OpenCL.xml" SetOutPath "$INSTDIR\Demos\SteppableDemos\DiffusionSolverFE_OpenCL\DiffusionSolverFE_OpenCL_3D" File "D:\install_projects\3.7.2\Demos\SteppableDemos\DiffusionSolverFE_OpenCL\DiffusionSolverFE_OpenCL_3D\DiffusionSolverFE_OpenCL_3D.cc3d" SetOutPath "$INSTDIR\Demos\SteppableDemos\DiffusionSolverFE_OpenCL\DiffusionSolverFE_OpenCL_3D\Simulation" File "D:\install_projects\3.7.2\Demos\SteppableDemos\DiffusionSolverFE_OpenCL\DiffusionSolverFE_OpenCL_3D\Simulation\DiffusionSolverFE_OpenCL_3D.txt" File "D:\install_projects\3.7.2\Demos\SteppableDemos\DiffusionSolverFE_OpenCL\DiffusionSolverFE_OpenCL_3D\Simulation\DiffusionSolverFE_OpenCL_3D.xml" SetOutPath "$INSTDIR\Demos\SteppableDemos\FastDiffusionSolver2DFE" SetOutPath "$INSTDIR\Demos\SteppableDemos\FastDiffusionSolver2DFE\diffusion_fast_box" File "D:\install_projects\3.7.2\Demos\SteppableDemos\FastDiffusionSolver2DFE\diffusion_fast_box\diffusion_fast_box.cc3d" SetOutPath "$INSTDIR\Demos\SteppableDemos\FastDiffusionSolver2DFE\diffusion_fast_box\Simulation" File "D:\install_projects\3.7.2\Demos\SteppableDemos\FastDiffusionSolver2DFE\diffusion_fast_box\Simulation\diffusion_2D_fast_box.pulse.txt" File "D:\install_projects\3.7.2\Demos\SteppableDemos\FastDiffusionSolver2DFE\diffusion_fast_box\Simulation\diffusion_fast_box.xml" SetOutPath "$INSTDIR\Demos\SteppableDemos\FlexibleDiffusionSolverADE" SetOutPath "$INSTDIR\Demos\SteppableDemos\FlexibleDiffusionSolverADE\diffusion_2D_ADE" File "D:\install_projects\3.7.2\Demos\SteppableDemos\FlexibleDiffusionSolverADE\diffusion_2D_ADE\diffusion_2D_ADE.cc3d" SetOutPath "$INSTDIR\Demos\SteppableDemos\FlexibleDiffusionSolverADE\diffusion_2D_ADE\Simulation" File "D:\install_projects\3.7.2\Demos\SteppableDemos\FlexibleDiffusionSolverADE\diffusion_2D_ADE\Simulation\diffusion_2D.pulse.txt" File "D:\install_projects\3.7.2\Demos\SteppableDemos\FlexibleDiffusionSolverADE\diffusion_2D_ADE\Simulation\diffusion_2D_ADE.xml" SetOutPath "$INSTDIR\Demos\SteppableDemos\FlexibleDiffusionSolverADE\diffusion_3D_ADE" File "D:\install_projects\3.7.2\Demos\SteppableDemos\FlexibleDiffusionSolverADE\diffusion_3D_ADE\diffusion_3D_ADE.cc3d" SetOutPath "$INSTDIR\Demos\SteppableDemos\FlexibleDiffusionSolverADE\diffusion_3D_ADE\Simulation" File "D:\install_projects\3.7.2\Demos\SteppableDemos\FlexibleDiffusionSolverADE\diffusion_3D_ADE\Simulation\diffusion_3D_ADE.xml" File "D:\install_projects\3.7.2\Demos\SteppableDemos\FlexibleDiffusionSolverADE\diffusion_3D_ADE\Simulation\diffusion_3D_fast_box.pulse.txt" SetOutPath "$INSTDIR\Demos\SteppableDemos\FlexibleDiffusionSolverFE" SetOutPath "$INSTDIR\Demos\SteppableDemos\FlexibleDiffusionSolverFE\diffusion_2D" File "D:\install_projects\3.7.2\Demos\SteppableDemos\FlexibleDiffusionSolverFE\diffusion_2D\diffusion_2D.cc3d" SetOutPath "$INSTDIR\Demos\SteppableDemos\FlexibleDiffusionSolverFE\diffusion_2D\Simulation" File "D:\install_projects\3.7.2\Demos\SteppableDemos\FlexibleDiffusionSolverFE\diffusion_2D\Simulation\diffusion_2D.pulse.txt" File "D:\install_projects\3.7.2\Demos\SteppableDemos\FlexibleDiffusionSolverFE\diffusion_2D\Simulation\diffusion_2D.xml" SetOutPath "$INSTDIR\Demos\SteppableDemos\FlexibleDiffusionSolverFE\diffusion_2D_init" File "D:\install_projects\3.7.2\Demos\SteppableDemos\FlexibleDiffusionSolverFE\diffusion_2D_init\diffusion_2D_init.cc3d" SetOutPath "$INSTDIR\Demos\SteppableDemos\FlexibleDiffusionSolverFE\diffusion_2D_init\Simulation" File "D:\install_projects\3.7.2\Demos\SteppableDemos\FlexibleDiffusionSolverFE\diffusion_2D_init\Simulation\diffusion_2D_init.xml" SetOutPath "$INSTDIR\Demos\SteppableDemos\FlexibleDiffusionSolverFE\diffusion_2D_multicall" File "D:\install_projects\3.7.2\Demos\SteppableDemos\FlexibleDiffusionSolverFE\diffusion_2D_multicall\diffusion_2D_multicall.cc3d" SetOutPath "$INSTDIR\Demos\SteppableDemos\FlexibleDiffusionSolverFE\diffusion_2D_multicall\Simulation" File "D:\install_projects\3.7.2\Demos\SteppableDemos\FlexibleDiffusionSolverFE\diffusion_2D_multicall\Simulation\amoebae_2D.piff" File "D:\install_projects\3.7.2\Demos\SteppableDemos\FlexibleDiffusionSolverFE\diffusion_2D_multicall\Simulation\diffusion_2D.pulse.txt" File "D:\install_projects\3.7.2\Demos\SteppableDemos\FlexibleDiffusionSolverFE\diffusion_2D_multicall\Simulation\diffusion_2D_multicall.xml" SetOutPath "$INSTDIR\Demos\SteppableDemos\FlexibleDiffusionSolverFE\diffusion_2D_try" File "D:\install_projects\3.7.2\Demos\SteppableDemos\FlexibleDiffusionSolverFE\diffusion_2D_try\diffusion_2D_try.cc3d" SetOutPath "$INSTDIR\Demos\SteppableDemos\FlexibleDiffusionSolverFE\diffusion_2D_try\Simulation" File "D:\install_projects\3.7.2\Demos\SteppableDemos\FlexibleDiffusionSolverFE\diffusion_2D_try\Simulation\diffusion_2D.pulse.txt" File "D:\install_projects\3.7.2\Demos\SteppableDemos\FlexibleDiffusionSolverFE\diffusion_2D_try\Simulation\diffusion_2D_try.xml" SetOutPath "$INSTDIR\Demos\SteppableDemos\FlexibleDiffusionSolverFE\diffusion_2D_uptake" File "D:\install_projects\3.7.2\Demos\SteppableDemos\FlexibleDiffusionSolverFE\diffusion_2D_uptake\diffusion_2D_uptake.cc3d" SetOutPath "$INSTDIR\Demos\SteppableDemos\FlexibleDiffusionSolverFE\diffusion_2D_uptake\Simulation" File "D:\install_projects\3.7.2\Demos\SteppableDemos\FlexibleDiffusionSolverFE\diffusion_2D_uptake\Simulation\diffusion_2D_uptake.xml" SetOutPath "$INSTDIR\Demos\SteppableDemos\FlexibleDiffusionSolverFE\diffusion_fast_box_3D" File "D:\install_projects\3.7.2\Demos\SteppableDemos\FlexibleDiffusionSolverFE\diffusion_fast_box_3D\diffusion_fast_box_3D.cc3d" SetOutPath "$INSTDIR\Demos\SteppableDemos\FlexibleDiffusionSolverFE\diffusion_fast_box_3D\Simulation" File "D:\install_projects\3.7.2\Demos\SteppableDemos\FlexibleDiffusionSolverFE\diffusion_fast_box_3D\Simulation\diffusion_3D_fast_box.pulse.txt" File "D:\install_projects\3.7.2\Demos\SteppableDemos\FlexibleDiffusionSolverFE\diffusion_fast_box_3D\Simulation\diffusion_fast_box_3D.xml" SetOutPath "$INSTDIR\Demos\SteppableDemos\FlexibleDiffusionSolverFE\diffusion_inside_2D" File "D:\install_projects\3.7.2\Demos\SteppableDemos\FlexibleDiffusionSolverFE\diffusion_inside_2D\diffusion_inside_2D.cc3d" SetOutPath "$INSTDIR\Demos\SteppableDemos\FlexibleDiffusionSolverFE\diffusion_inside_2D\Simulation" File "D:\install_projects\3.7.2\Demos\SteppableDemos\FlexibleDiffusionSolverFE\diffusion_inside_2D\Simulation\diffusion_2D_wall.pulse.txt" File "D:\install_projects\3.7.2\Demos\SteppableDemos\FlexibleDiffusionSolverFE\diffusion_inside_2D\Simulation\diffusion_inside.piff" File "D:\install_projects\3.7.2\Demos\SteppableDemos\FlexibleDiffusionSolverFE\diffusion_inside_2D\Simulation\diffusion_inside_2D.xml" SetOutPath "$INSTDIR\Demos\SteppableDemos\FlexibleDiffusionSolverFE\diffusion_wall_2D" File "D:\install_projects\3.7.2\Demos\SteppableDemos\FlexibleDiffusionSolverFE\diffusion_wall_2D\diffusion_wall_2D.cc3d" SetOutPath "$INSTDIR\Demos\SteppableDemos\FlexibleDiffusionSolverFE\diffusion_wall_2D\Simulation" File "D:\install_projects\3.7.2\Demos\SteppableDemos\FlexibleDiffusionSolverFE\diffusion_wall_2D\Simulation\diffusion_2D_wall.pulse.txt" File "D:\install_projects\3.7.2\Demos\SteppableDemos\FlexibleDiffusionSolverFE\diffusion_wall_2D\Simulation\diffusion_wall.piff" File "D:\install_projects\3.7.2\Demos\SteppableDemos\FlexibleDiffusionSolverFE\diffusion_wall_2D\Simulation\diffusion_wall_2D.xml" SetOutPath "$INSTDIR\Demos\SteppableDemos\FlexibleDiffusionSolverFE\Steering" File "D:\install_projects\3.7.2\Demos\SteppableDemos\FlexibleDiffusionSolverFE\Steering\diffusion_steering.cc3d" SetOutPath "$INSTDIR\Demos\SteppableDemos\FlexibleDiffusionSolverFE\Steering\Simulation" File "D:\install_projects\3.7.2\Demos\SteppableDemos\FlexibleDiffusionSolverFE\Steering\Simulation\diffusion_2D.pulse.txt" File "D:\install_projects\3.7.2\Demos\SteppableDemos\FlexibleDiffusionSolverFE\Steering\Simulation\diffusion_2D_steering.py" File "D:\install_projects\3.7.2\Demos\SteppableDemos\FlexibleDiffusionSolverFE\Steering\Simulation\diffusion_2D_steering.xml" File "D:\install_projects\3.7.2\Demos\SteppableDemos\FlexibleDiffusionSolverFE\Steering\Simulation\diffusion_2D_steering_steppables.py" SetOutPath "$INSTDIR\Demos\SteppableDemos\KernelDiffusionSolver" SetOutPath "$INSTDIR\Demos\SteppableDemos\KernelDiffusionSolver\diffusion_2D_kernel" File "D:\install_projects\3.7.2\Demos\SteppableDemos\KernelDiffusionSolver\diffusion_2D_kernel\diffusion_2D_kernel.cc3d" SetOutPath "$INSTDIR\Demos\SteppableDemos\KernelDiffusionSolver\diffusion_2D_kernel\Simulation" File "D:\install_projects\3.7.2\Demos\SteppableDemos\KernelDiffusionSolver\diffusion_2D_kernel\Simulation\diffusion_2D.pulse.txt" File "D:\install_projects\3.7.2\Demos\SteppableDemos\KernelDiffusionSolver\diffusion_2D_kernel\Simulation\diffusion_2D_kernel.xml" SetOutPath "$INSTDIR\Demos\SteppableDemos\KernelDiffusionSolver\diffusion_2D_kernel_coarse_grain" File "D:\install_projects\3.7.2\Demos\SteppableDemos\KernelDiffusionSolver\diffusion_2D_kernel_coarse_grain\diffusion_2D_kernel_coarse_grain.cc3d" SetOutPath "$INSTDIR\Demos\SteppableDemos\KernelDiffusionSolver\diffusion_2D_kernel_coarse_grain\Simulation" File "D:\install_projects\3.7.2\Demos\SteppableDemos\KernelDiffusionSolver\diffusion_2D_kernel_coarse_grain\Simulation\diffusion_2D_coarse_grain.pulse.txt" File "D:\install_projects\3.7.2\Demos\SteppableDemos\KernelDiffusionSolver\diffusion_2D_kernel_coarse_grain\Simulation\diffusion_2D_kernel_coarse_grain.xml" SetOutPath "$INSTDIR\Demos\SteppableDemos\ReactionDiffusionSolverFE" SetOutPath "$INSTDIR\Demos\SteppableDemos\ReactionDiffusionSolverFE\ReactionDiffusioin_2D" File "D:\install_projects\3.7.2\Demos\SteppableDemos\ReactionDiffusionSolverFE\ReactionDiffusioin_2D\ReactionDiffusioin_2D.cc3d" SetOutPath "$INSTDIR\Demos\SteppableDemos\ReactionDiffusionSolverFE\ReactionDiffusioin_2D\Simulation" File "D:\install_projects\3.7.2\Demos\SteppableDemos\ReactionDiffusionSolverFE\ReactionDiffusioin_2D\Simulation\diffusion_2D.pulse.txt" File "D:\install_projects\3.7.2\Demos\SteppableDemos\ReactionDiffusionSolverFE\ReactionDiffusioin_2D\Simulation\ReactionDiffusioin_2D.xml" SetOutPath "$INSTDIR\Demos\SteppableDemos\ReactionDiffusionSolverFE\ReactionDiffusioin_2D_FN" File "D:\install_projects\3.7.2\Demos\SteppableDemos\ReactionDiffusionSolverFE\ReactionDiffusioin_2D_FN\ReactionDiffusioin_2D_FN.cc3d" SetOutPath "$INSTDIR\Demos\SteppableDemos\ReactionDiffusionSolverFE\ReactionDiffusioin_2D_FN\Simulation" File "D:\install_projects\3.7.2\Demos\SteppableDemos\ReactionDiffusionSolverFE\ReactionDiffusioin_2D_FN\Simulation\FN.pulse.txt" File "D:\install_projects\3.7.2\Demos\SteppableDemos\ReactionDiffusionSolverFE\ReactionDiffusioin_2D_FN\Simulation\ReactionDiffusioin_2D_FN.xml" SetOutPath "$INSTDIR\Demos\SteppableDemos\ReactionDiffusionSolverFE_OpenCL_Implicit" SetOutPath "$INSTDIR\Demos\SteppableDemos\ReactionDiffusionSolverFE_OpenCL_Implicit\ReactionDiffusion_OpenCL_Implicit_3D" File "D:\install_projects\3.7.2\Demos\SteppableDemos\ReactionDiffusionSolverFE_OpenCL_Implicit\ReactionDiffusion_OpenCL_Implicit_3D\ReactionDiffusion_OpenCL_Implicit_3D.cc3d" SetOutPath "$INSTDIR\Demos\SteppableDemos\ReactionDiffusionSolverFE_OpenCL_Implicit\ReactionDiffusion_OpenCL_Implicit_3D\Simulation" File "D:\install_projects\3.7.2\Demos\SteppableDemos\ReactionDiffusionSolverFE_OpenCL_Implicit\ReactionDiffusion_OpenCL_Implicit_3D\Simulation\ReactionDiffusion_OpenCL_3D.txt" File "D:\install_projects\3.7.2\Demos\SteppableDemos\ReactionDiffusionSolverFE_OpenCL_Implicit\ReactionDiffusion_OpenCL_Implicit_3D\Simulation\ReactionDiffusion_OpenCL_3D.xml" SetOutPath "$INSTDIR\Demos\SteppableDemos\ReactionDiffusionSolverFE_OpenCL_Implicit\SimpleDiffusion" File "D:\install_projects\3.7.2\Demos\SteppableDemos\ReactionDiffusionSolverFE_OpenCL_Implicit\SimpleDiffusion\SimpleDiffusion.cc3d" SetOutPath "$INSTDIR\Demos\SteppableDemos\ReactionDiffusionSolverFE_OpenCL_Implicit\SimpleDiffusion\Simulation" File "D:\install_projects\3.7.2\Demos\SteppableDemos\ReactionDiffusionSolverFE_OpenCL_Implicit\SimpleDiffusion\Simulation\SimpleDiffusion.txt" File "D:\install_projects\3.7.2\Demos\SteppableDemos\ReactionDiffusionSolverFE_OpenCL_Implicit\SimpleDiffusion\Simulation\SimpleDiffusion.xml" SetOutPath "$INSTDIR\Demos\SteppableDemos\secretion" File "D:\install_projects\3.7.2\Demos\SteppableDemos\secretion\secretion.cc3d" SetOutPath "$INSTDIR\Demos\SteppableDemos\secretion\Simulation" File "D:\install_projects\3.7.2\Demos\SteppableDemos\secretion\Simulation\bacterium_macrophage_2D_secretion.py" File "D:\install_projects\3.7.2\Demos\SteppableDemos\secretion\Simulation\bacterium_macrophage_2D_secretion.xml" File "D:\install_projects\3.7.2\Demos\SteppableDemos\secretion\Simulation\bacterium_macrophage_2D_secretion_steppables.py" File "D:\install_projects\3.7.2\Demos\SteppableDemos\secretion\Simulation\bacterium_macrophage_2D_wall.piff" SetOutPath "$INSTDIR\Demos\SteppableDemos\SecretionSteadyState" File "D:\install_projects\3.7.2\Demos\SteppableDemos\SecretionSteadyState\SecretionSteadyState.cc3d" SetOutPath "$INSTDIR\Demos\SteppableDemos\SecretionSteadyState\Simulation" File "D:\install_projects\3.7.2\Demos\SteppableDemos\SecretionSteadyState\Simulation\diffusion_2D.pulse.txt" File "D:\install_projects\3.7.2\Demos\SteppableDemos\SecretionSteadyState\Simulation\SecretionSteadyState.py" File "D:\install_projects\3.7.2\Demos\SteppableDemos\SecretionSteadyState\Simulation\SecretionSteadyState.xml" File "D:\install_projects\3.7.2\Demos\SteppableDemos\SecretionSteadyState\Simulation\SecretionSteadyStateSteppables.py" SetOutPath "$INSTDIR\Demos\SteppableDemos\SteadyStateDiffusionSolver" SetOutPath "$INSTDIR\Demos\SteppableDemos\SteadyStateDiffusionSolver\diffusion_steady_state_2D" File "D:\install_projects\3.7.2\Demos\SteppableDemos\SteadyStateDiffusionSolver\diffusion_steady_state_2D\diffusion_steady_state_2D.cc3d" SetOutPath "$INSTDIR\Demos\SteppableDemos\SteadyStateDiffusionSolver\diffusion_steady_state_2D\Simulation" File "D:\install_projects\3.7.2\Demos\SteppableDemos\SteadyStateDiffusionSolver\diffusion_steady_state_2D\Simulation\diffusion_steady_state_2D.xml" File "D:\install_projects\3.7.2\Demos\SteppableDemos\SteadyStateDiffusionSolver\diffusion_steady_state_2D\Simulation\elasticityTest.piff" SetOutPath "$INSTDIR\Demos\SteppableDemos\SteadyStateDiffusionSolver\diffusion_steady_state_ext_potential" File "D:\install_projects\3.7.2\Demos\SteppableDemos\SteadyStateDiffusionSolver\diffusion_steady_state_ext_potential\diffusion_steady_state_ext_potential.cc3d" SetOutPath "$INSTDIR\Demos\SteppableDemos\SteadyStateDiffusionSolver\diffusion_steady_state_ext_potential\Simulation" File "D:\install_projects\3.7.2\Demos\SteppableDemos\SteadyStateDiffusionSolver\diffusion_steady_state_ext_potential\Simulation\diffusion_steady_state_ext_potential.xml" File "D:\install_projects\3.7.2\Demos\SteppableDemos\SteadyStateDiffusionSolver\diffusion_steady_state_ext_potential\Simulation\elasticityTest.piff" SetOutPath "$INSTDIR\Demos\SteppableDemos\SteadyStateDiffusionSolver\diffusion_steady_state_ext_potential_3D" File "D:\install_projects\3.7.2\Demos\SteppableDemos\SteadyStateDiffusionSolver\diffusion_steady_state_ext_potential_3D\diffusion_steady_state_ext_potential_3D.cc3d" SetOutPath "$INSTDIR\Demos\SteppableDemos\SteadyStateDiffusionSolver\diffusion_steady_state_ext_potential_3D\Simulation" File "D:\install_projects\3.7.2\Demos\SteppableDemos\SteadyStateDiffusionSolver\diffusion_steady_state_ext_potential_3D\Simulation\diffusion_steady_state_ext_potential_3D.xml" File "D:\install_projects\3.7.2\Demos\SteppableDemos\SteadyStateDiffusionSolver\diffusion_steady_state_ext_potential_3D\Simulation\elasticityTest.piff" SetOutPath "$INSTDIR\Demos\SteppableDemos\SteadyStateDiffusionSolver\diffusion_steady_state_ext_potential_3D_oxygen" File "D:\install_projects\3.7.2\Demos\SteppableDemos\SteadyStateDiffusionSolver\diffusion_steady_state_ext_potential_3D_oxygen\diffusion_steady_state_ext_potential_3D_oxygen.cc3d" SetOutPath "$INSTDIR\Demos\SteppableDemos\SteadyStateDiffusionSolver\diffusion_steady_state_ext_potential_3D_oxygen\Simulation" File "D:\install_projects\3.7.2\Demos\SteppableDemos\SteadyStateDiffusionSolver\diffusion_steady_state_ext_potential_3D_oxygen\Simulation\diffusion_steady_state_ext_potential_3D_oxygen.xml" File "D:\install_projects\3.7.2\Demos\SteppableDemos\SteadyStateDiffusionSolver\diffusion_steady_state_ext_potential_3D_oxygen\Simulation\elasticityTest.piff" SetOutPath "$INSTDIR\icons" File "D:\install_projects\3.7.2\icons\cc3d_128x128_logo.ico" File "D:\install_projects\3.7.2\icons\cc3d_128x128_logo.png" File "D:\install_projects\3.7.2\icons\cc3d_128x128_logo_setup.ico" File "D:\install_projects\3.7.2\icons\cc3d_128x128_logo_www.ico" File "D:\install_projects\3.7.2\icons\cc3d_256x256_logo.ico" File "D:\install_projects\3.7.2\icons\cc3d_256x256_logo.png" File "D:\install_projects\3.7.2\icons\cc3d_256x256_logo_setup.ico" File "D:\install_projects\3.7.2\icons\cc3d_256x256_logo_setup.png" File "D:\install_projects\3.7.2\icons\cc3d_256x256_logo_setup.tif" File "D:\install_projects\3.7.2\icons\cc3d_256x256_logo_www.ico" File "D:\install_projects\3.7.2\icons\cc3d_256x256_logo_www.png" File "D:\install_projects\3.7.2\icons\cc3d_64x64_logo.ico" File "D:\install_projects\3.7.2\icons\cc3d_64x64_logo.png" File "D:\install_projects\3.7.2\icons\cc3d_64x64_logo_setup.ico" File "D:\install_projects\3.7.2\icons\cc3d_64x64_logo_www.ico" File "D:\install_projects\3.7.2\icons\lizard-at-a-computer-small.png" File "D:\install_projects\3.7.2\icons\splash_angio.png" File "D:\install_projects\3.7.2\icons\Thumbs.db" SetOutPath "$INSTDIR\include" SetOutPath "$INSTDIR\include\bionetsolver" File "D:\install_projects\3.7.2\include\bionetsolver\Bionetwork.h" File "D:\install_projects\3.7.2\include\bionetsolver\BionetworkDLLSpecifier.h" File "D:\install_projects\3.7.2\include\bionetsolver\BionetworkSBML.h" File "D:\install_projects\3.7.2\include\bionetsolver\BionetworkTemplateLibrary.h" File "D:\install_projects\3.7.2\include\bionetsolver\BionetworkUtilManager.h" File "D:\install_projects\3.7.2\include\bionetsolver\soslib_CvodeSettings.h" File "D:\install_projects\3.7.2\include\bionetsolver\soslib_IntegratorInstance.h" File "D:\install_projects\3.7.2\include\bionetsolver\soslib_OdeModel.h" SetOutPath "$INSTDIR\include\CompuCell3D" SetOutPath "$INSTDIR\include\CompuCell3D\BasicUtils" File "D:\install_projects\3.7.2\include\CompuCell3D\BasicUtils\BasicArray.h" File "D:\install_projects\3.7.2\include\CompuCell3D\BasicUtils\BasicClassAccessor.h" File "D:\install_projects\3.7.2\include\CompuCell3D\BasicUtils\BasicClassAccessorBase.h" File "D:\install_projects\3.7.2\include\CompuCell3D\BasicUtils\BasicClassFactory.h" File "D:\install_projects\3.7.2\include\CompuCell3D\BasicUtils\BasicClassFactoryBase.h" File "D:\install_projects\3.7.2\include\CompuCell3D\BasicUtils\BasicClassGroup.h" File "D:\install_projects\3.7.2\include\CompuCell3D\BasicUtils\BasicClassGroupArray.h" File "D:\install_projects\3.7.2\include\CompuCell3D\BasicUtils\BasicClassGroupFactory.h" File "D:\install_projects\3.7.2\include\CompuCell3D\BasicUtils\BasicClassRegistry.h" File "D:\install_projects\3.7.2\include\CompuCell3D\BasicUtils\BasicCounter.h" File "D:\install_projects\3.7.2\include\CompuCell3D\BasicUtils\BasicDynamicClassFactory.h" File "D:\install_projects\3.7.2\include\CompuCell3D\BasicUtils\BasicDynamicClassNode.h" File "D:\install_projects\3.7.2\include\CompuCell3D\BasicUtils\BasicDynamicClassNodeBase.h" File "D:\install_projects\3.7.2\include\CompuCell3D\BasicUtils\BasicException.h" File "D:\install_projects\3.7.2\include\CompuCell3D\BasicUtils\BasicFileLocation.h" File "D:\install_projects\3.7.2\include\CompuCell3D\BasicUtils\BasicPluginInfo.h" File "D:\install_projects\3.7.2\include\CompuCell3D\BasicUtils\BasicPluginManager.h" File "D:\install_projects\3.7.2\include\CompuCell3D\BasicUtils\BasicPluginProxy.h" File "D:\install_projects\3.7.2\include\CompuCell3D\BasicUtils\BasicRandomNumberGenerator.h" File "D:\install_projects\3.7.2\include\CompuCell3D\BasicUtils\BasicSmartPointer.h" File "D:\install_projects\3.7.2\include\CompuCell3D\BasicUtils\BasicString.h" File "D:\install_projects\3.7.2\include\CompuCell3D\BasicUtils\BasicStringTable.h" File "D:\install_projects\3.7.2\include\CompuCell3D\BasicUtils\WindowsGlob.h" File "D:\install_projects\3.7.2\include\CompuCell3D\BasicUtils\wrapdll.h" File "D:\install_projects\3.7.2\include\CompuCell3D\BasicUtils\Zap.h" SetOutPath "$INSTDIR\include\CompuCell3D\CompuCell3D" File "D:\install_projects\3.7.2\include\CompuCell3D\CompuCell3D\ClassRegistry.h" File "D:\install_projects\3.7.2\include\CompuCell3D\CompuCell3D\CompuCellLibDLLSpecifier.h" File "D:\install_projects\3.7.2\include\CompuCell3D\CompuCell3D\ParseData.h" File "D:\install_projects\3.7.2\include\CompuCell3D\CompuCell3D\Parser.h" File "D:\install_projects\3.7.2\include\CompuCell3D\CompuCell3D\ParserStorage.h" File "D:\install_projects\3.7.2\include\CompuCell3D\CompuCell3D\Plugin.h" File "D:\install_projects\3.7.2\include\CompuCell3D\CompuCell3D\PluginBase.h" File "D:\install_projects\3.7.2\include\CompuCell3D\CompuCell3D\PluginManager.h" File "D:\install_projects\3.7.2\include\CompuCell3D\CompuCell3D\PottsParseData.h" File "D:\install_projects\3.7.2\include\CompuCell3D\CompuCell3D\Serializer.h" File "D:\install_projects\3.7.2\include\CompuCell3D\CompuCell3D\SimObject.h" File "D:\install_projects\3.7.2\include\CompuCell3D\CompuCell3D\Simulator.h" File "D:\install_projects\3.7.2\include\CompuCell3D\CompuCell3D\SteerableObject.h" File "D:\install_projects\3.7.2\include\CompuCell3D\CompuCell3D\Steppable.h" SetOutPath "$INSTDIR\include\CompuCell3D\CompuCell3D\Automaton" File "D:\install_projects\3.7.2\include\CompuCell3D\CompuCell3D\Automaton\Automaton.h" File "D:\install_projects\3.7.2\include\CompuCell3D\CompuCell3D\Automaton\CellType.h" File "D:\install_projects\3.7.2\include\CompuCell3D\CompuCell3D\Automaton\CellTypeDynamicClassNode.h" File "D:\install_projects\3.7.2\include\CompuCell3D\CompuCell3D\Automaton\CellTypeNode.h" File "D:\install_projects\3.7.2\include\CompuCell3D\CompuCell3D\Automaton\Transition.h" SetOutPath "$INSTDIR\include\CompuCell3D\CompuCell3D\Boundary" File "D:\install_projects\3.7.2\include\CompuCell3D\CompuCell3D\Boundary\Algorithm.h" File "D:\install_projects\3.7.2\include\CompuCell3D\CompuCell3D\Boundary\AlgorithmFactory.h" File "D:\install_projects\3.7.2\include\CompuCell3D\CompuCell3D\Boundary\Boundary.h" File "D:\install_projects\3.7.2\include\CompuCell3D\CompuCell3D\Boundary\BoundaryDLLSpecifier.h" File "D:\install_projects\3.7.2\include\CompuCell3D\CompuCell3D\Boundary\BoundaryFactory.h" File "D:\install_projects\3.7.2\include\CompuCell3D\CompuCell3D\Boundary\BoundaryStrategy.h" File "D:\install_projects\3.7.2\include\CompuCell3D\CompuCell3D\Boundary\BoundaryTypeDefinitions.h" File "D:\install_projects\3.7.2\include\CompuCell3D\CompuCell3D\Boundary\ChengbangAlgorithm.h" File "D:\install_projects\3.7.2\include\CompuCell3D\CompuCell3D\Boundary\DefaultAlgorithm.h" File "D:\install_projects\3.7.2\include\CompuCell3D\CompuCell3D\Boundary\NoFluxBoundary.h" File "D:\install_projects\3.7.2\include\CompuCell3D\CompuCell3D\Boundary\PeriodicBoundary.h" SetOutPath "$INSTDIR\include\CompuCell3D\CompuCell3D\Field3D" File "D:\install_projects\3.7.2\include\CompuCell3D\CompuCell3D\Field3D\AdjacentNeighbor.h" File "D:\install_projects\3.7.2\include\CompuCell3D\CompuCell3D\Field3D\Array3D.h" File "D:\install_projects\3.7.2\include\CompuCell3D\CompuCell3D\Field3D\Dim3D.h" File "D:\install_projects\3.7.2\include\CompuCell3D\CompuCell3D\Field3D\Field3D.h" File "D:\install_projects\3.7.2\include\CompuCell3D\CompuCell3D\Field3D\Field3DChangeWatcher.h" File "D:\install_projects\3.7.2\include\CompuCell3D\CompuCell3D\Field3D\Field3DImpl.h" File "D:\install_projects\3.7.2\include\CompuCell3D\CompuCell3D\Field3D\Field3DIndex.h" File "D:\install_projects\3.7.2\include\CompuCell3D\CompuCell3D\Field3D\Field3DIO.h" File "D:\install_projects\3.7.2\include\CompuCell3D\CompuCell3D\Field3D\Neighbor.h" File "D:\install_projects\3.7.2\include\CompuCell3D\CompuCell3D\Field3D\NeighborFinder.h" File "D:\install_projects\3.7.2\include\CompuCell3D\CompuCell3D\Field3D\Point3D.h" File "D:\install_projects\3.7.2\include\CompuCell3D\CompuCell3D\Field3D\WatchableField3D.h" SetOutPath "$INSTDIR\include\CompuCell3D\CompuCell3D\plugins" SetOutPath "$INSTDIR\include\CompuCell3D\CompuCell3D\plugins\AdhesionFlex" File "D:\install_projects\3.7.2\include\CompuCell3D\CompuCell3D\plugins\AdhesionFlex\AdhesionFlexData.h" File "D:\install_projects\3.7.2\include\CompuCell3D\CompuCell3D\plugins\AdhesionFlex\AdhesionFlexDLLSpecifier.h" File "D:\install_projects\3.7.2\include\CompuCell3D\CompuCell3D\plugins\AdhesionFlex\AdhesionFlexPlugin.h" SetOutPath "$INSTDIR\include\CompuCell3D\CompuCell3D\plugins\BoundaryMonitor" File "D:\install_projects\3.7.2\include\CompuCell3D\CompuCell3D\plugins\BoundaryMonitor\BoundaryMonitorDLLSpecifier.h" File "D:\install_projects\3.7.2\include\CompuCell3D\CompuCell3D\plugins\BoundaryMonitor\BoundaryMonitorPlugin.h" SetOutPath "$INSTDIR\include\CompuCell3D\CompuCell3D\plugins\BoundaryPixelTracker" File "D:\install_projects\3.7.2\include\CompuCell3D\CompuCell3D\plugins\BoundaryPixelTracker\BoundaryPixelTracker.h" File "D:\install_projects\3.7.2\include\CompuCell3D\CompuCell3D\plugins\BoundaryPixelTracker\BoundaryPixelTrackerDLLSpecifier.h" File "D:\install_projects\3.7.2\include\CompuCell3D\CompuCell3D\plugins\BoundaryPixelTracker\BoundaryPixelTrackerPlugin.h" SetOutPath "$INSTDIR\include\CompuCell3D\CompuCell3D\plugins\CellOrientation" File "D:\install_projects\3.7.2\include\CompuCell3D\CompuCell3D\plugins\CellOrientation\CellOrientationDLLSpecifier.h" File "D:\install_projects\3.7.2\include\CompuCell3D\CompuCell3D\plugins\CellOrientation\CellOrientationPlugin.h" File "D:\install_projects\3.7.2\include\CompuCell3D\CompuCell3D\plugins\CellOrientation\CellOrientationVector.h" SetOutPath "$INSTDIR\include\CompuCell3D\CompuCell3D\plugins\CellType" File "D:\install_projects\3.7.2\include\CompuCell3D\CompuCell3D\plugins\CellType\CellTypeDLLSpecifier.h" File "D:\install_projects\3.7.2\include\CompuCell3D\CompuCell3D\plugins\CellType\CellTypeG.h" File "D:\install_projects\3.7.2\include\CompuCell3D\CompuCell3D\plugins\CellType\CellTypePlugin.h" SetOutPath "$INSTDIR\include\CompuCell3D\CompuCell3D\plugins\CellTypeMonitor" File "D:\install_projects\3.7.2\include\CompuCell3D\CompuCell3D\plugins\CellTypeMonitor\CellTypeMonitorDLLSpecifier.h" File "D:\install_projects\3.7.2\include\CompuCell3D\CompuCell3D\plugins\CellTypeMonitor\CellTypeMonitorPlugin.h" SetOutPath "$INSTDIR\include\CompuCell3D\CompuCell3D\plugins\CenterOfMass" File "D:\install_projects\3.7.2\include\CompuCell3D\CompuCell3D\plugins\CenterOfMass\CenterOfMassDLLSpecifier.h" File "D:\install_projects\3.7.2\include\CompuCell3D\CompuCell3D\plugins\CenterOfMass\CenterOfMassPlugin.h" SetOutPath "$INSTDIR\include\CompuCell3D\CompuCell3D\plugins\Chemotaxis" File "D:\install_projects\3.7.2\include\CompuCell3D\CompuCell3D\plugins\Chemotaxis\ChemotaxisData.h" File "D:\install_projects\3.7.2\include\CompuCell3D\CompuCell3D\plugins\Chemotaxis\ChemotaxisDLLSpecifier.h" File "D:\install_projects\3.7.2\include\CompuCell3D\CompuCell3D\plugins\Chemotaxis\ChemotaxisPlugin.h" SetOutPath "$INSTDIR\include\CompuCell3D\CompuCell3D\plugins\ChemotaxisDicty" File "D:\install_projects\3.7.2\include\CompuCell3D\CompuCell3D\plugins\ChemotaxisDicty\ChemotaxisDictyDLLSpecifier.h" File "D:\install_projects\3.7.2\include\CompuCell3D\CompuCell3D\plugins\ChemotaxisDicty\ChemotaxisDictyPlugin.h" SetOutPath "$INSTDIR\include\CompuCell3D\CompuCell3D\plugins\ChemotaxisSimple" File "D:\install_projects\3.7.2\include\CompuCell3D\CompuCell3D\plugins\ChemotaxisSimple\ChemotaxisSimpleDLLSpecifier.h" File "D:\install_projects\3.7.2\include\CompuCell3D\CompuCell3D\plugins\ChemotaxisSimple\ChemotaxisSimpleEnergy.h" SetOutPath "$INSTDIR\include\CompuCell3D\CompuCell3D\plugins\ClusterSurface" File "D:\install_projects\3.7.2\include\CompuCell3D\CompuCell3D\plugins\ClusterSurface\ClusterSurfaceDLLSpecifier.h" File "D:\install_projects\3.7.2\include\CompuCell3D\CompuCell3D\plugins\ClusterSurface\ClusterSurfacePlugin.h" SetOutPath "$INSTDIR\include\CompuCell3D\CompuCell3D\plugins\ClusterSurfaceTracker" File "D:\install_projects\3.7.2\include\CompuCell3D\CompuCell3D\plugins\ClusterSurfaceTracker\ClusterSurfaceTrackerDLLSpecifier.h" File "D:\install_projects\3.7.2\include\CompuCell3D\CompuCell3D\plugins\ClusterSurfaceTracker\ClusterSurfaceTrackerPlugin.h" SetOutPath "$INSTDIR\include\CompuCell3D\CompuCell3D\plugins\Compartment" File "D:\install_projects\3.7.2\include\CompuCell3D\CompuCell3D\plugins\Compartment\CompartmentDLLSpecifier.h" File "D:\install_projects\3.7.2\include\CompuCell3D\CompuCell3D\plugins\Compartment\CompartmentPlugin.h" SetOutPath "$INSTDIR\include\CompuCell3D\CompuCell3D\plugins\Connectivity" File "D:\install_projects\3.7.2\include\CompuCell3D\CompuCell3D\plugins\Connectivity\ConnectivityDLLSpecifier.h" File "D:\install_projects\3.7.2\include\CompuCell3D\CompuCell3D\plugins\Connectivity\ConnectivityPlugin.h" SetOutPath "$INSTDIR\include\CompuCell3D\CompuCell3D\plugins\ConnectivityGlobal" File "D:\install_projects\3.7.2\include\CompuCell3D\CompuCell3D\plugins\ConnectivityGlobal\ConnectivityGlobalData.h" File "D:\install_projects\3.7.2\include\CompuCell3D\CompuCell3D\plugins\ConnectivityGlobal\ConnectivityGlobalDLLSpecifier.h" File "D:\install_projects\3.7.2\include\CompuCell3D\CompuCell3D\plugins\ConnectivityGlobal\ConnectivityGlobalPlugin.h" SetOutPath "$INSTDIR\include\CompuCell3D\CompuCell3D\plugins\ConnectivityLocalFlex" File "D:\install_projects\3.7.2\include\CompuCell3D\CompuCell3D\plugins\ConnectivityLocalFlex\ConnectivityLocalFlexData.h" File "D:\install_projects\3.7.2\include\CompuCell3D\CompuCell3D\plugins\ConnectivityLocalFlex\ConnectivityLocalFlexDLLSpecifier.h" File "D:\install_projects\3.7.2\include\CompuCell3D\CompuCell3D\plugins\ConnectivityLocalFlex\ConnectivityLocalFlexPlugin.h" SetOutPath "$INSTDIR\include\CompuCell3D\CompuCell3D\plugins\Contact" File "D:\install_projects\3.7.2\include\CompuCell3D\CompuCell3D\plugins\Contact\ContactDLLSpecifier.h" File "D:\install_projects\3.7.2\include\CompuCell3D\CompuCell3D\plugins\Contact\ContactPlugin.h" SetOutPath "$INSTDIR\include\CompuCell3D\CompuCell3D\plugins\ContactInternal" File "D:\install_projects\3.7.2\include\CompuCell3D\CompuCell3D\plugins\ContactInternal\ContactInternalDLLSpecifier.h" File "D:\install_projects\3.7.2\include\CompuCell3D\CompuCell3D\plugins\ContactInternal\ContactInternalPlugin.h" SetOutPath "$INSTDIR\include\CompuCell3D\CompuCell3D\plugins\ContactLocalFlex" File "D:\install_projects\3.7.2\include\CompuCell3D\CompuCell3D\plugins\ContactLocalFlex\ContactLocalFlexData.h" File "D:\install_projects\3.7.2\include\CompuCell3D\CompuCell3D\plugins\ContactLocalFlex\ContactLocalFlexDLLSpecifier.h" File "D:\install_projects\3.7.2\include\CompuCell3D\CompuCell3D\plugins\ContactLocalFlex\ContactLocalFlexPlugin.h" SetOutPath "$INSTDIR\include\CompuCell3D\CompuCell3D\plugins\ContactLocalProduct" File "D:\install_projects\3.7.2\include\CompuCell3D\CompuCell3D\plugins\ContactLocalProduct\ContactLocalProductData.h" File "D:\install_projects\3.7.2\include\CompuCell3D\CompuCell3D\plugins\ContactLocalProduct\ContactLocalProductDLLSpecifier.h" File "D:\install_projects\3.7.2\include\CompuCell3D\CompuCell3D\plugins\ContactLocalProduct\ContactLocalProductPlugin.h" SetOutPath "$INSTDIR\include\CompuCell3D\CompuCell3D\plugins\ContactMultiCad" File "D:\install_projects\3.7.2\include\CompuCell3D\CompuCell3D\plugins\ContactMultiCad\ContactMultiCadData.h" File "D:\install_projects\3.7.2\include\CompuCell3D\CompuCell3D\plugins\ContactMultiCad\ContactMultiCadDLLSpecifier.h" File "D:\install_projects\3.7.2\include\CompuCell3D\CompuCell3D\plugins\ContactMultiCad\ContactMultiCadPlugin.h" SetOutPath "$INSTDIR\include\CompuCell3D\CompuCell3D\plugins\ContactOrientation" File "D:\install_projects\3.7.2\include\CompuCell3D\CompuCell3D\plugins\ContactOrientation\ContactOrientationData.h" File "D:\install_projects\3.7.2\include\CompuCell3D\CompuCell3D\plugins\ContactOrientation\ContactOrientationDLLSpecifier.h" File "D:\install_projects\3.7.2\include\CompuCell3D\CompuCell3D\plugins\ContactOrientation\ContactOrientationPlugin.h" SetOutPath "$INSTDIR\include\CompuCell3D\CompuCell3D\plugins\ConvergentExtension" File "D:\install_projects\3.7.2\include\CompuCell3D\CompuCell3D\plugins\ConvergentExtension\ConvergentExtensionDLLSpecifier.h" File "D:\install_projects\3.7.2\include\CompuCell3D\CompuCell3D\plugins\ConvergentExtension\ConvergentExtensionPlugin.h" SetOutPath "$INSTDIR\include\CompuCell3D\CompuCell3D\plugins\Curvature" File "D:\install_projects\3.7.2\include\CompuCell3D\CompuCell3D\plugins\Curvature\CurvatureDLLSpecifier.h" File "D:\install_projects\3.7.2\include\CompuCell3D\CompuCell3D\plugins\Curvature\CurvaturePlugin.h" File "D:\install_projects\3.7.2\include\CompuCell3D\CompuCell3D\plugins\Curvature\CurvatureTracker.h" SetOutPath "$INSTDIR\include\CompuCell3D\CompuCell3D\plugins\Elasticity" File "D:\install_projects\3.7.2\include\CompuCell3D\CompuCell3D\plugins\Elasticity\ElasticityDLLSpecifier.h" File "D:\install_projects\3.7.2\include\CompuCell3D\CompuCell3D\plugins\Elasticity\ElasticityPlugin.h" SetOutPath "$INSTDIR\include\CompuCell3D\CompuCell3D\plugins\ElasticityTracker" File "D:\install_projects\3.7.2\include\CompuCell3D\CompuCell3D\plugins\ElasticityTracker\ElasticityTracker.h" File "D:\install_projects\3.7.2\include\CompuCell3D\CompuCell3D\plugins\ElasticityTracker\ElasticityTrackerDLLSpecifier.h" File "D:\install_projects\3.7.2\include\CompuCell3D\CompuCell3D\plugins\ElasticityTracker\ElasticityTrackerPlugin.h" SetOutPath "$INSTDIR\include\CompuCell3D\CompuCell3D\plugins\ExternalPotential" File "D:\install_projects\3.7.2\include\CompuCell3D\CompuCell3D\plugins\ExternalPotential\ExternalPotentialDLLSpecifier.h" File "D:\install_projects\3.7.2\include\CompuCell3D\CompuCell3D\plugins\ExternalPotential\ExternalPotentialPlugin.h" SetOutPath "$INSTDIR\include\CompuCell3D\CompuCell3D\plugins\FocalPointPlasticity" File "D:\install_projects\3.7.2\include\CompuCell3D\CompuCell3D\plugins\FocalPointPlasticity\FocalPointPlasticityDLLSpecifier.h" File "D:\install_projects\3.7.2\include\CompuCell3D\CompuCell3D\plugins\FocalPointPlasticity\FocalPointPlasticityPlugin.h" File "D:\install_projects\3.7.2\include\CompuCell3D\CompuCell3D\plugins\FocalPointPlasticity\FocalPointPlasticityTracker.h" SetOutPath "$INSTDIR\include\CompuCell3D\CompuCell3D\plugins\GlobalBoundaryPixelTracker" File "D:\install_projects\3.7.2\include\CompuCell3D\CompuCell3D\plugins\GlobalBoundaryPixelTracker\GlobalBoundaryPixelTrackerDLLSpecifier.h" File "D:\install_projects\3.7.2\include\CompuCell3D\CompuCell3D\plugins\GlobalBoundaryPixelTracker\GlobalBoundaryPixelTrackerPlugin.h" SetOutPath "$INSTDIR\include\CompuCell3D\CompuCell3D\plugins\LengthConstraint" File "D:\install_projects\3.7.2\include\CompuCell3D\CompuCell3D\plugins\LengthConstraint\LengthConstraintData.h" File "D:\install_projects\3.7.2\include\CompuCell3D\CompuCell3D\plugins\LengthConstraint\LengthConstraintDLLSpecifier.h" File "D:\install_projects\3.7.2\include\CompuCell3D\CompuCell3D\plugins\LengthConstraint\LengthConstraintPlugin.h" SetOutPath "$INSTDIR\include\CompuCell3D\CompuCell3D\plugins\Mitosis" File "D:\install_projects\3.7.2\include\CompuCell3D\CompuCell3D\plugins\Mitosis\MitosisDLLSpecifier.h" File "D:\install_projects\3.7.2\include\CompuCell3D\CompuCell3D\plugins\Mitosis\MitosisPlugin.h" File "D:\install_projects\3.7.2\include\CompuCell3D\CompuCell3D\plugins\Mitosis\MitosisSimplePlugin.h" SetOutPath "$INSTDIR\include\CompuCell3D\CompuCell3D\plugins\MomentOfInertia" File "D:\install_projects\3.7.2\include\CompuCell3D\CompuCell3D\plugins\MomentOfInertia\CellMomentOfInertia.h" File "D:\install_projects\3.7.2\include\CompuCell3D\CompuCell3D\plugins\MomentOfInertia\MomentOfInertiaDLLSpecifier.h" File "D:\install_projects\3.7.2\include\CompuCell3D\CompuCell3D\plugins\MomentOfInertia\MomentOfInertiaPlugin.h" SetOutPath "$INSTDIR\include\CompuCell3D\CompuCell3D\plugins\NeighborStick" File "D:\install_projects\3.7.2\include\CompuCell3D\CompuCell3D\plugins\NeighborStick\NeighborStickDLLSpecifier.h" File "D:\install_projects\3.7.2\include\CompuCell3D\CompuCell3D\plugins\NeighborStick\NeighborStickPlugin.h" SetOutPath "$INSTDIR\include\CompuCell3D\CompuCell3D\plugins\NeighborTracker" File "D:\install_projects\3.7.2\include\CompuCell3D\CompuCell3D\plugins\NeighborTracker\NeighborTracker.h" File "D:\install_projects\3.7.2\include\CompuCell3D\CompuCell3D\plugins\NeighborTracker\NeighborTrackerDLLSpecifier.h" File "D:\install_projects\3.7.2\include\CompuCell3D\CompuCell3D\plugins\NeighborTracker\NeighborTrackerPlugin.h" SetOutPath "$INSTDIR\include\CompuCell3D\CompuCell3D\plugins\OrientedContact" File "D:\install_projects\3.7.2\include\CompuCell3D\CompuCell3D\plugins\OrientedContact\OrientedContactDLLSpecifier.h" File "D:\install_projects\3.7.2\include\CompuCell3D\CompuCell3D\plugins\OrientedContact\OrientedContactPlugin.h" SetOutPath "$INSTDIR\include\CompuCell3D\CompuCell3D\plugins\PDESolverCaller" File "D:\install_projects\3.7.2\include\CompuCell3D\CompuCell3D\plugins\PDESolverCaller\PDESolverCallerDLLSpecifier.h" File "D:\install_projects\3.7.2\include\CompuCell3D\CompuCell3D\plugins\PDESolverCaller\PDESolverCallerPlugin.h" SetOutPath "$INSTDIR\include\CompuCell3D\CompuCell3D\plugins\PixelTracker" File "D:\install_projects\3.7.2\include\CompuCell3D\CompuCell3D\plugins\PixelTracker\PixelTracker.h" File "D:\install_projects\3.7.2\include\CompuCell3D\CompuCell3D\plugins\PixelTracker\PixelTrackerDLLSpecifier.h" File "D:\install_projects\3.7.2\include\CompuCell3D\CompuCell3D\plugins\PixelTracker\PixelTrackerPlugin.h" SetOutPath "$INSTDIR\include\CompuCell3D\CompuCell3D\plugins\Plasticity" File "D:\install_projects\3.7.2\include\CompuCell3D\CompuCell3D\plugins\Plasticity\PlasticityDLLSpecifier.h" File "D:\install_projects\3.7.2\include\CompuCell3D\CompuCell3D\plugins\Plasticity\PlasticityPlugin.h" SetOutPath "$INSTDIR\include\CompuCell3D\CompuCell3D\plugins\PlasticityTracker" File "D:\install_projects\3.7.2\include\CompuCell3D\CompuCell3D\plugins\PlasticityTracker\PlasticityTracker.h" File "D:\install_projects\3.7.2\include\CompuCell3D\CompuCell3D\plugins\PlasticityTracker\PlasticityTrackerDLLSpecifier.h" File "D:\install_projects\3.7.2\include\CompuCell3D\CompuCell3D\plugins\PlasticityTracker\PlasticityTrackerPlugin.h" SetOutPath "$INSTDIR\include\CompuCell3D\CompuCell3D\plugins\PlayerSettings" File "D:\install_projects\3.7.2\include\CompuCell3D\CompuCell3D\plugins\PlayerSettings\PlayerSettings.h" File "D:\install_projects\3.7.2\include\CompuCell3D\CompuCell3D\plugins\PlayerSettings\PlayerSettingsDLLSpecifier.h" File "D:\install_projects\3.7.2\include\CompuCell3D\CompuCell3D\plugins\PlayerSettings\PlayerSettingsPlugin.h" SetOutPath "$INSTDIR\include\CompuCell3D\CompuCell3D\plugins\Polarization23" File "D:\install_projects\3.7.2\include\CompuCell3D\CompuCell3D\plugins\Polarization23\Polarization23Data.h" File "D:\install_projects\3.7.2\include\CompuCell3D\CompuCell3D\plugins\Polarization23\Polarization23DLLSpecifier.h" File "D:\install_projects\3.7.2\include\CompuCell3D\CompuCell3D\plugins\Polarization23\Polarization23Plugin.h" SetOutPath "$INSTDIR\include\CompuCell3D\CompuCell3D\plugins\PolarizationVector" File "D:\install_projects\3.7.2\include\CompuCell3D\CompuCell3D\plugins\PolarizationVector\PolarizationVector.h" File "D:\install_projects\3.7.2\include\CompuCell3D\CompuCell3D\plugins\PolarizationVector\PolarizationVectorDLLSpecifier.h" File "D:\install_projects\3.7.2\include\CompuCell3D\CompuCell3D\plugins\PolarizationVector\PolarizationVectorPlugin.h" SetOutPath "$INSTDIR\include\CompuCell3D\CompuCell3D\plugins\Rearrangement" File "D:\install_projects\3.7.2\include\CompuCell3D\CompuCell3D\plugins\Rearrangement\RearrangementDLLSpecifier.h" File "D:\install_projects\3.7.2\include\CompuCell3D\CompuCell3D\plugins\Rearrangement\RearrangementPlugin.h" SetOutPath "$INSTDIR\include\CompuCell3D\CompuCell3D\plugins\Secretion" File "D:\install_projects\3.7.2\include\CompuCell3D\CompuCell3D\plugins\Secretion\FieldSecretor.h" File "D:\install_projects\3.7.2\include\CompuCell3D\CompuCell3D\plugins\Secretion\SecretionDataP.h" File "D:\install_projects\3.7.2\include\CompuCell3D\CompuCell3D\plugins\Secretion\SecretionDLLSpecifier.h" File "D:\install_projects\3.7.2\include\CompuCell3D\CompuCell3D\plugins\Secretion\SecretionPlugin.h" SetOutPath "$INSTDIR\include\CompuCell3D\CompuCell3D\plugins\SimpleClock" File "D:\install_projects\3.7.2\include\CompuCell3D\CompuCell3D\plugins\SimpleClock\SimpleClock.h" File "D:\install_projects\3.7.2\include\CompuCell3D\CompuCell3D\plugins\SimpleClock\SimpleClockDLLSpecifier.h" File "D:\install_projects\3.7.2\include\CompuCell3D\CompuCell3D\plugins\SimpleClock\SimpleClockPlugin.h" SetOutPath "$INSTDIR\include\CompuCell3D\CompuCell3D\plugins\Stretchness" File "D:\install_projects\3.7.2\include\CompuCell3D\CompuCell3D\plugins\Stretchness\StretchnessDLLSpecifier.h" File "D:\install_projects\3.7.2\include\CompuCell3D\CompuCell3D\plugins\Stretchness\StretchnessPlugin.h" SetOutPath "$INSTDIR\include\CompuCell3D\CompuCell3D\plugins\Surface" File "D:\install_projects\3.7.2\include\CompuCell3D\CompuCell3D\plugins\Surface\SurfaceDLLSpecifier.h" File "D:\install_projects\3.7.2\include\CompuCell3D\CompuCell3D\plugins\Surface\SurfacePlugin.h" SetOutPath "$INSTDIR\include\CompuCell3D\CompuCell3D\plugins\SurfaceTracker" File "D:\install_projects\3.7.2\include\CompuCell3D\CompuCell3D\plugins\SurfaceTracker\SurfaceTrackerDLLSpecifier.h" File "D:\install_projects\3.7.2\include\CompuCell3D\CompuCell3D\plugins\SurfaceTracker\SurfaceTrackerPlugin.h" SetOutPath "$INSTDIR\include\CompuCell3D\CompuCell3D\plugins\Template" File "D:\install_projects\3.7.2\include\CompuCell3D\CompuCell3D\plugins\Template\TemplatePlugin.h" File "D:\install_projects\3.7.2\include\CompuCell3D\CompuCell3D\plugins\Template\TemplatePluginDLLSpecifier.h" SetOutPath "$INSTDIR\include\CompuCell3D\CompuCell3D\plugins\Viscosity" File "D:\install_projects\3.7.2\include\CompuCell3D\CompuCell3D\plugins\Viscosity\ViscosityDLLSpecifier.h" File "D:\install_projects\3.7.2\include\CompuCell3D\CompuCell3D\plugins\Viscosity\ViscosityPlugin.h" SetOutPath "$INSTDIR\include\CompuCell3D\CompuCell3D\plugins\Volume" File "D:\install_projects\3.7.2\include\CompuCell3D\CompuCell3D\plugins\Volume\VolumeDLLSpecifier.h" File "D:\install_projects\3.7.2\include\CompuCell3D\CompuCell3D\plugins\Volume\VolumePlugin.h" SetOutPath "$INSTDIR\include\CompuCell3D\CompuCell3D\plugins\VolumeTracker" File "D:\install_projects\3.7.2\include\CompuCell3D\CompuCell3D\plugins\VolumeTracker\VolumeTrackerDLLSpecifier.h" File "D:\install_projects\3.7.2\include\CompuCell3D\CompuCell3D\plugins\VolumeTracker\VolumeTrackerPlugin.h" SetOutPath "$INSTDIR\include\CompuCell3D\CompuCell3D\Potts3D" File "D:\install_projects\3.7.2\include\CompuCell3D\CompuCell3D\Potts3D\AcceptanceFunction.h" File "D:\install_projects\3.7.2\include\CompuCell3D\CompuCell3D\Potts3D\AttributeAdder.h" File "D:\install_projects\3.7.2\include\CompuCell3D\CompuCell3D\Potts3D\Cell.h" File "D:\install_projects\3.7.2\include\CompuCell3D\CompuCell3D\Potts3D\CellChangeWatcher.h" File "D:\install_projects\3.7.2\include\CompuCell3D\CompuCell3D\Potts3D\CellGChangeWatcher.h" File "D:\install_projects\3.7.2\include\CompuCell3D\CompuCell3D\Potts3D\CellInventory.h" File "D:\install_projects\3.7.2\include\CompuCell3D\CompuCell3D\Potts3D\CellTypeMotilityData.h" File "D:\install_projects\3.7.2\include\CompuCell3D\CompuCell3D\Potts3D\CustomAcceptanceFunction.h" File "D:\install_projects\3.7.2\include\CompuCell3D\CompuCell3D\Potts3D\DefaultAcceptanceFunction.h" File "D:\install_projects\3.7.2\include\CompuCell3D\CompuCell3D\Potts3D\EnergyFunction.h" File "D:\install_projects\3.7.2\include\CompuCell3D\CompuCell3D\Potts3D\EnergyFunctionCalculator.h" File "D:\install_projects\3.7.2\include\CompuCell3D\CompuCell3D\Potts3D\EnergyFunctionCalculatorStatistics.h" File "D:\install_projects\3.7.2\include\CompuCell3D\CompuCell3D\Potts3D\FirstOrderExpansionAcceptanceFunction.h" File "D:\install_projects\3.7.2\include\CompuCell3D\CompuCell3D\Potts3D\FixedStepper.h" File "D:\install_projects\3.7.2\include\CompuCell3D\CompuCell3D\Potts3D\FluctuationAmplitudeFunction.h" File "D:\install_projects\3.7.2\include\CompuCell3D\CompuCell3D\Potts3D\Potts3D.h" File "D:\install_projects\3.7.2\include\CompuCell3D\CompuCell3D\Potts3D\StandardFluctuationAmplitudeFunctions.h" File "D:\install_projects\3.7.2\include\CompuCell3D\CompuCell3D\Potts3D\Stepper.h" File "D:\install_projects\3.7.2\include\CompuCell3D\CompuCell3D\Potts3D\TypeChangeWatcher.h" File "D:\install_projects\3.7.2\include\CompuCell3D\CompuCell3D\Potts3D\TypeTransition.h" SetOutPath "$INSTDIR\include\CompuCell3D\CompuCell3D\steppables" SetOutPath "$INSTDIR\include\CompuCell3D\CompuCell3D\steppables\BlobFieldInitializer" File "D:\install_projects\3.7.2\include\CompuCell3D\CompuCell3D\steppables\BlobFieldInitializer\BlobFieldInitializer.h" File "D:\install_projects\3.7.2\include\CompuCell3D\CompuCell3D\steppables\BlobFieldInitializer\BlobFieldInitializerDLLSpecifier.h" SetOutPath "$INSTDIR\include\CompuCell3D\CompuCell3D\steppables\BoxWatcher" File "D:\install_projects\3.7.2\include\CompuCell3D\CompuCell3D\steppables\BoxWatcher\BoxWatcher.h" File "D:\install_projects\3.7.2\include\CompuCell3D\CompuCell3D\steppables\BoxWatcher\BoxWatcherDLLSpecifier.h" SetOutPath "$INSTDIR\include\CompuCell3D\CompuCell3D\steppables\CleaverMeshDumper" File "D:\install_projects\3.7.2\include\CompuCell3D\CompuCell3D\steppables\CleaverMeshDumper\CleaverMeshDumper.h" File "D:\install_projects\3.7.2\include\CompuCell3D\CompuCell3D\steppables\CleaverMeshDumper\CleaverMeshDumperDLLSpecifier.h" SetOutPath "$INSTDIR\include\CompuCell3D\CompuCell3D\steppables\Dicty" File "D:\install_projects\3.7.2\include\CompuCell3D\CompuCell3D\steppables\Dicty\DictyChemotaxisSteppable.h" File "D:\install_projects\3.7.2\include\CompuCell3D\CompuCell3D\steppables\Dicty\DictyDLLSpecifier.h" File "D:\install_projects\3.7.2\include\CompuCell3D\CompuCell3D\steppables\Dicty\DictyFieldInitializer.h" SetOutPath "$INSTDIR\include\CompuCell3D\CompuCell3D\steppables\FoamDataOutput" File "D:\install_projects\3.7.2\include\CompuCell3D\CompuCell3D\steppables\FoamDataOutput\FoamDataOutput.h" File "D:\install_projects\3.7.2\include\CompuCell3D\CompuCell3D\steppables\FoamDataOutput\FoamDataOutputDLLSpecifier.h" SetOutPath "$INSTDIR\include\CompuCell3D\CompuCell3D\steppables\MitosisSteppable" File "D:\install_projects\3.7.2\include\CompuCell3D\CompuCell3D\steppables\MitosisSteppable\MitosisSteppable.h" File "D:\install_projects\3.7.2\include\CompuCell3D\CompuCell3D\steppables\MitosisSteppable\MitosisSteppableDLLSpecifier.h" SetOutPath "$INSTDIR\include\CompuCell3D\CompuCell3D\steppables\ObjInitializer" File "D:\install_projects\3.7.2\include\CompuCell3D\CompuCell3D\steppables\ObjInitializer\ObjInitializer.h" File "D:\install_projects\3.7.2\include\CompuCell3D\CompuCell3D\steppables\ObjInitializer\ObjInitializerDLLSpecifier.h" SetOutPath "$INSTDIR\include\CompuCell3D\CompuCell3D\steppables\PDESolvers" File "D:\install_projects\3.7.2\include\CompuCell3D\CompuCell3D\steppables\PDESolvers\AdvectionDiffusionSolverFE.h" File "D:\install_projects\3.7.2\include\CompuCell3D\CompuCell3D\steppables\PDESolvers\BoundaryConditionSpecifier.h" File "D:\install_projects\3.7.2\include\CompuCell3D\CompuCell3D\steppables\PDESolvers\DiffSecrData.h" File "D:\install_projects\3.7.2\include\CompuCell3D\CompuCell3D\steppables\PDESolvers\Diffusable.h" File "D:\install_projects\3.7.2\include\CompuCell3D\CompuCell3D\steppables\PDESolvers\DiffusableGraph.h" File "D:\install_projects\3.7.2\include\CompuCell3D\CompuCell3D\steppables\PDESolvers\DiffusableVector.h" File "D:\install_projects\3.7.2\include\CompuCell3D\CompuCell3D\steppables\PDESolvers\DiffusableVector2D.h" File "D:\install_projects\3.7.2\include\CompuCell3D\CompuCell3D\steppables\PDESolvers\DiffusableVectorCommon.h" File "D:\install_projects\3.7.2\include\CompuCell3D\CompuCell3D\steppables\PDESolvers\DiffusableVectorFortran.h" File "D:\install_projects\3.7.2\include\CompuCell3D\CompuCell3D\steppables\PDESolvers\DiffusionSolverFE.h" File "D:\install_projects\3.7.2\include\CompuCell3D\CompuCell3D\steppables\PDESolvers\DiffusionSolverFE_CPU.h" File "D:\install_projects\3.7.2\include\CompuCell3D\CompuCell3D\steppables\PDESolvers\DiffusionSolverFE_CPU_Implicit.h" File "D:\install_projects\3.7.2\include\CompuCell3D\CompuCell3D\steppables\PDESolvers\f2c.h" File "D:\install_projects\3.7.2\include\CompuCell3D\CompuCell3D\steppables\PDESolvers\FastDiffusionSolver2DFE.h" File "D:\install_projects\3.7.2\include\CompuCell3D\CompuCell3D\steppables\PDESolvers\FlexibleDiffusionSolverADE.h" File "D:\install_projects\3.7.2\include\CompuCell3D\CompuCell3D\steppables\PDESolvers\FlexibleDiffusionSolverFE.h" File "D:\install_projects\3.7.2\include\CompuCell3D\CompuCell3D\steppables\PDESolvers\FlexibleDiffusionSolverFE_GPU.h" File "D:\install_projects\3.7.2\include\CompuCell3D\CompuCell3D\steppables\PDESolvers\FlexibleDiffusionSolverFE_GPU.hpp" File "D:\install_projects\3.7.2\include\CompuCell3D\CompuCell3D\steppables\PDESolvers\FlexibleDiffusionSolverFE_GPU_Device.h" File "D:\install_projects\3.7.2\include\CompuCell3D\CompuCell3D\steppables\PDESolvers\FlexibleReactionDiffusionSolverFE.h" File "D:\install_projects\3.7.2\include\CompuCell3D\CompuCell3D\steppables\PDESolvers\GPUSolverBasicData.h" File "D:\install_projects\3.7.2\include\CompuCell3D\CompuCell3D\steppables\PDESolvers\GPUSolverParams.h" File "D:\install_projects\3.7.2\include\CompuCell3D\CompuCell3D\steppables\PDESolvers\hpppdesolvers.h" File "D:\install_projects\3.7.2\include\CompuCell3D\CompuCell3D\steppables\PDESolvers\KernelDiffusionSolver.h" File "D:\install_projects\3.7.2\include\CompuCell3D\CompuCell3D\steppables\PDESolvers\MyTime.h" File "D:\install_projects\3.7.2\include\CompuCell3D\CompuCell3D\steppables\PDESolvers\PDESolversDLLSpecifier.h" File "D:\install_projects\3.7.2\include\CompuCell3D\CompuCell3D\steppables\PDESolvers\PDESolversGPUDllSpecifier.h" File "D:\install_projects\3.7.2\include\CompuCell3D\CompuCell3D\steppables\PDESolvers\ReactionDiffusionSolverFE.h" File "D:\install_projects\3.7.2\include\CompuCell3D\CompuCell3D\steppables\PDESolvers\ReactionDiffusionSolverFE_SavHog.h" File "D:\install_projects\3.7.2\include\CompuCell3D\CompuCell3D\steppables\PDESolvers\SteadyStateDiffusionSolver.h" File "D:\install_projects\3.7.2\include\CompuCell3D\CompuCell3D\steppables\PDESolvers\SteadyStateDiffusionSolver2D.h" SetOutPath "$INSTDIR\include\CompuCell3D\CompuCell3D\steppables\PIFDumper" File "D:\install_projects\3.7.2\include\CompuCell3D\CompuCell3D\steppables\PIFDumper\PIFDumper.h" File "D:\install_projects\3.7.2\include\CompuCell3D\CompuCell3D\steppables\PIFDumper\PIFDumperDLLSpecifier.h" SetOutPath "$INSTDIR\include\CompuCell3D\CompuCell3D\steppables\PIFInitializer" File "D:\install_projects\3.7.2\include\CompuCell3D\CompuCell3D\steppables\PIFInitializer\PIFInitializer.h" File "D:\install_projects\3.7.2\include\CompuCell3D\CompuCell3D\steppables\PIFInitializer\PIFInitializerDLLSpecifier.h" SetOutPath "$INSTDIR\include\CompuCell3D\CompuCell3D\steppables\RandomInitializers" File "D:\install_projects\3.7.2\include\CompuCell3D\CompuCell3D\steppables\RandomInitializers\FieldBuilder.h" File "D:\install_projects\3.7.2\include\CompuCell3D\CompuCell3D\steppables\RandomInitializers\RandomBlobInitializer.h" File "D:\install_projects\3.7.2\include\CompuCell3D\CompuCell3D\steppables\RandomInitializers\RandomFieldInitializer.h" File "D:\install_projects\3.7.2\include\CompuCell3D\CompuCell3D\steppables\RandomInitializers\RandomFieldInitializerDLLSpecifier.h" SetOutPath "$INSTDIR\include\CompuCell3D\CompuCell3D\steppables\UniformFieldInitializer" File "D:\install_projects\3.7.2\include\CompuCell3D\CompuCell3D\steppables\UniformFieldInitializer\UniformFieldInitializer.h" File "D:\install_projects\3.7.2\include\CompuCell3D\CompuCell3D\steppables\UniformFieldInitializer\UniformFieldInitializerDLLSpecifier.h" SetOutPath "$INSTDIR\include\CompuCell3D\muParser" File "D:\install_projects\3.7.2\include\CompuCell3D\muParser\muParser.h" File "D:\install_projects\3.7.2\include\CompuCell3D\muParser\muParserBase.h" File "D:\install_projects\3.7.2\include\CompuCell3D\muParser\muParserBytecode.h" File "D:\install_projects\3.7.2\include\CompuCell3D\muParser\muParserCallback.h" File "D:\install_projects\3.7.2\include\CompuCell3D\muParser\muParserDef.h" File "D:\install_projects\3.7.2\include\CompuCell3D\muParser\muParserDLL.h" File "D:\install_projects\3.7.2\include\CompuCell3D\muParser\muParserError.h" File "D:\install_projects\3.7.2\include\CompuCell3D\muParser\muParserFixes.h" File "D:\install_projects\3.7.2\include\CompuCell3D\muParser\muParserInt.h" File "D:\install_projects\3.7.2\include\CompuCell3D\muParser\muParserStack.h" File "D:\install_projects\3.7.2\include\CompuCell3D\muParser\muParserTemplateMagic.h" File "D:\install_projects\3.7.2\include\CompuCell3D\muParser\muParserTest.h" File "D:\install_projects\3.7.2\include\CompuCell3D\muParser\muParserToken.h" File "D:\install_projects\3.7.2\include\CompuCell3D\muParser\muParserTokenReader.h" SetOutPath "$INSTDIR\include\CompuCell3D\muParser\ExpressionEvaluator" File "D:\install_projects\3.7.2\include\CompuCell3D\muParser\ExpressionEvaluator\ExpressionEvaluator.h" File "D:\install_projects\3.7.2\include\CompuCell3D\muParser\ExpressionEvaluator\ExpressionEvaluatorDLLSpecifier.h" SetOutPath "$INSTDIR\include\CompuCell3D\PublicUtilities" File "D:\install_projects\3.7.2\include\CompuCell3D\PublicUtilities\NumericalUtils.h" File "D:\install_projects\3.7.2\include\CompuCell3D\PublicUtilities\ParallelUtilsOpenMP.h" File "D:\install_projects\3.7.2\include\CompuCell3D\PublicUtilities\StringUtils.h" File "D:\install_projects\3.7.2\include\CompuCell3D\PublicUtilities\Vector3.h" SetOutPath "$INSTDIR\include\CompuCell3D\PublicUtilities\Units" File "D:\install_projects\3.7.2\include\CompuCell3D\PublicUtilities\Units\Unit.h" File "D:\install_projects\3.7.2\include\CompuCell3D\PublicUtilities\Units\unitParserException.h" File "D:\install_projects\3.7.2\include\CompuCell3D\PublicUtilities\Units\unit_calculator.h" File "D:\install_projects\3.7.2\include\CompuCell3D\PublicUtilities\Units\unit_calculator_globals.h" File "D:\install_projects\3.7.2\include\CompuCell3D\PublicUtilities\Units\unit_calculator_main_lib.h" SetOutPath "$INSTDIR\include\CompuCell3D\Utils" File "D:\install_projects\3.7.2\include\CompuCell3D\Utils\cldeque.h" File "D:\install_projects\3.7.2\include\CompuCell3D\Utils\Coordinates3D.h" SetOutPath "$INSTDIR\include\CompuCell3D\XMLUtils" File "D:\install_projects\3.7.2\include\CompuCell3D\XMLUtils\CC3DXMLElement.h" File "D:\install_projects\3.7.2\include\CompuCell3D\XMLUtils\CC3DXMLElementWalker.h" File "D:\install_projects\3.7.2\include\CompuCell3D\XMLUtils\XMLParserExpatLibDLLSpecifier.h" File "D:\install_projects\3.7.2\include\CompuCell3D\XMLUtils\XMLUtilsDLLSpecifier.h" SetOutPath "$INSTDIR\include\pyinterface" SetOutPath "$INSTDIR\include\pyinterface\PyPlugin" File "D:\install_projects\3.7.2\include\pyinterface\PyPlugin\ChangeWatcherPyWrapper.h" File "D:\install_projects\3.7.2\include\pyinterface\PyPlugin\EnergyFunctionPyWrapper.h" File "D:\install_projects\3.7.2\include\pyinterface\PyPlugin\NeighborFinderParams.h" File "D:\install_projects\3.7.2\include\pyinterface\PyPlugin\PyAttributeAdder.h" File "D:\install_projects\3.7.2\include\pyinterface\PyPlugin\PyCompuCellObjAdapter.h" File "D:\install_projects\3.7.2\include\pyinterface\PyPlugin\PyPlugin.h" File "D:\install_projects\3.7.2\include\pyinterface\PyPlugin\StepperPyWrapper.h" File "D:\install_projects\3.7.2\include\pyinterface\PyPlugin\TypeChangeWatcherPyWrapper.h" SetOutPath "$INSTDIR\include\sbmlsolver" File "D:\install_projects\3.7.2\include\sbmlsolver\arithmeticCompiler.h" File "D:\install_projects\3.7.2\include\sbmlsolver\ASTIndexNameNode.h" File "D:\install_projects\3.7.2\include\sbmlsolver\charBuffer.h" File "D:\install_projects\3.7.2\include\sbmlsolver\compiler.h" File "D:\install_projects\3.7.2\include\sbmlsolver\cvodeData.h" File "D:\install_projects\3.7.2\include\sbmlsolver\cvodeSolver.h" File "D:\install_projects\3.7.2\include\sbmlsolver\daeSolver.h" File "D:\install_projects\3.7.2\include\sbmlsolver\drawGraph.h" File "D:\install_projects\3.7.2\include\sbmlsolver\exportdefs.h" File "D:\install_projects\3.7.2\include\sbmlsolver\integratorInstance.h" File "D:\install_projects\3.7.2\include\sbmlsolver\integratorSettings.h" File "D:\install_projects\3.7.2\include\sbmlsolver\interpol.h" File "D:\install_projects\3.7.2\include\sbmlsolver\modelSimplify.h" File "D:\install_projects\3.7.2\include\sbmlsolver\nullSolver.h" File "D:\install_projects\3.7.2\include\sbmlsolver\odeConstruct.h" File "D:\install_projects\3.7.2\include\sbmlsolver\odeModel.h" File "D:\install_projects\3.7.2\include\sbmlsolver\odeSolver.h" File "D:\install_projects\3.7.2\include\sbmlsolver\processAST.h" File "D:\install_projects\3.7.2\include\sbmlsolver\sbml.h" File "D:\install_projects\3.7.2\include\sbmlsolver\sbmlResults.h" File "D:\install_projects\3.7.2\include\sbmlsolver\sensSolver.h" File "D:\install_projects\3.7.2\include\sbmlsolver\solverError.h" File "D:\install_projects\3.7.2\include\sbmlsolver\util.h" File "D:\install_projects\3.7.2\include\sbmlsolver\variableIndex.h" SetOutPath "$INSTDIR\include\SerializerDE" File "D:\install_projects\3.7.2\include\SerializerDE\SerializerDE.h" SetOutPath "$INSTDIR\lib" File "D:\install_projects\3.7.2\lib\bionetsolver.lib" File "D:\install_projects\3.7.2\lib\CC3DAutomaton.lib" File "D:\install_projects\3.7.2\lib\CC3DBasicUtils.lib" File "D:\install_projects\3.7.2\lib\CC3DBoundary.lib" File "D:\install_projects\3.7.2\lib\CC3DCompuCellLib.lib" File "D:\install_projects\3.7.2\lib\CC3DExpressionEvaluator.lib" File "D:\install_projects\3.7.2\lib\CC3DField3D.lib" File "D:\install_projects\3.7.2\lib\CC3DmuParser.lib" File "D:\install_projects\3.7.2\lib\CC3DPotts3D.lib" File "D:\install_projects\3.7.2\lib\CC3DPublicUtilities.lib" File "D:\install_projects\3.7.2\lib\CC3DUnits.lib" File "D:\install_projects\3.7.2\lib\CC3DXMLUtils.lib" File "D:\install_projects\3.7.2\lib\ExampleClass.lib" File "D:\install_projects\3.7.2\lib\FieldExtractor.lib" File "D:\install_projects\3.7.2\lib\PyPlugin.lib" File "D:\install_projects\3.7.2\lib\sbmlsolver.lib" File "D:\install_projects\3.7.2\lib\SerializerDE.lib" SetOutPath "$INSTDIR\lib\CompuCell3DPlugins" File "D:\install_projects\3.7.2\lib\CompuCell3DPlugins\CC3DAdhesionFlex.dll" File "D:\install_projects\3.7.2\lib\CompuCell3DPlugins\CC3DAdhesionFlex.lib" File "D:\install_projects\3.7.2\lib\CompuCell3DPlugins\CC3DBoundaryMonitor.dll" File "D:\install_projects\3.7.2\lib\CompuCell3DPlugins\CC3DBoundaryMonitor.lib" File "D:\install_projects\3.7.2\lib\CompuCell3DPlugins\CC3DBoundaryPixelTracker.dll" File "D:\install_projects\3.7.2\lib\CompuCell3DPlugins\CC3DBoundaryPixelTracker.lib" File "D:\install_projects\3.7.2\lib\CompuCell3DPlugins\CC3DCellOrientation.dll" File "D:\install_projects\3.7.2\lib\CompuCell3DPlugins\CC3DCellOrientation.lib" File "D:\install_projects\3.7.2\lib\CompuCell3DPlugins\CC3DCellType.dll" File "D:\install_projects\3.7.2\lib\CompuCell3DPlugins\CC3DCellType.lib" File "D:\install_projects\3.7.2\lib\CompuCell3DPlugins\CC3DCellTypeMonitor.dll" File "D:\install_projects\3.7.2\lib\CompuCell3DPlugins\CC3DCellTypeMonitor.lib" File "D:\install_projects\3.7.2\lib\CompuCell3DPlugins\CC3DCenterOfMass.dll" File "D:\install_projects\3.7.2\lib\CompuCell3DPlugins\CC3DCenterOfMass.lib" File "D:\install_projects\3.7.2\lib\CompuCell3DPlugins\CC3DChemotaxis.dll" File "D:\install_projects\3.7.2\lib\CompuCell3DPlugins\CC3DChemotaxis.lib" File "D:\install_projects\3.7.2\lib\CompuCell3DPlugins\CC3DChemotaxisDicty.dll" File "D:\install_projects\3.7.2\lib\CompuCell3DPlugins\CC3DChemotaxisDicty.lib" File "D:\install_projects\3.7.2\lib\CompuCell3DPlugins\CC3DChemotaxisSimple.dll" File "D:\install_projects\3.7.2\lib\CompuCell3DPlugins\CC3DChemotaxisSimple.lib" File "D:\install_projects\3.7.2\lib\CompuCell3DPlugins\CC3DClusterSurface.dll" File "D:\install_projects\3.7.2\lib\CompuCell3DPlugins\CC3DClusterSurface.lib" File "D:\install_projects\3.7.2\lib\CompuCell3DPlugins\CC3DClusterSurfaceTracker.dll" File "D:\install_projects\3.7.2\lib\CompuCell3DPlugins\CC3DClusterSurfaceTracker.lib" File "D:\install_projects\3.7.2\lib\CompuCell3DPlugins\CC3DCompartment.dll" File "D:\install_projects\3.7.2\lib\CompuCell3DPlugins\CC3DCompartment.lib" File "D:\install_projects\3.7.2\lib\CompuCell3DPlugins\CC3DConnectivity.dll" File "D:\install_projects\3.7.2\lib\CompuCell3DPlugins\CC3DConnectivity.lib" File "D:\install_projects\3.7.2\lib\CompuCell3DPlugins\CC3DConnectivityGlobal.dll" File "D:\install_projects\3.7.2\lib\CompuCell3DPlugins\CC3DConnectivityGlobal.lib" File "D:\install_projects\3.7.2\lib\CompuCell3DPlugins\CC3DConnectivityLocalFlex.dll" File "D:\install_projects\3.7.2\lib\CompuCell3DPlugins\CC3DConnectivityLocalFlex.lib" File "D:\install_projects\3.7.2\lib\CompuCell3DPlugins\CC3DContact.dll" File "D:\install_projects\3.7.2\lib\CompuCell3DPlugins\CC3DContact.lib" File "D:\install_projects\3.7.2\lib\CompuCell3DPlugins\CC3DContactInternal.dll" File "D:\install_projects\3.7.2\lib\CompuCell3DPlugins\CC3DContactInternal.lib" File "D:\install_projects\3.7.2\lib\CompuCell3DPlugins\CC3DContactLocalFlex.dll" File "D:\install_projects\3.7.2\lib\CompuCell3DPlugins\CC3DContactLocalFlex.lib" File "D:\install_projects\3.7.2\lib\CompuCell3DPlugins\CC3DContactLocalProduct.dll" File "D:\install_projects\3.7.2\lib\CompuCell3DPlugins\CC3DContactLocalProduct.lib" File "D:\install_projects\3.7.2\lib\CompuCell3DPlugins\CC3DContactMultiCad.dll" File "D:\install_projects\3.7.2\lib\CompuCell3DPlugins\CC3DContactMultiCad.lib" File "D:\install_projects\3.7.2\lib\CompuCell3DPlugins\CC3DContactOrientation.dll" File "D:\install_projects\3.7.2\lib\CompuCell3DPlugins\CC3DContactOrientation.lib" File "D:\install_projects\3.7.2\lib\CompuCell3DPlugins\CC3DConvergentExtension.dll" File "D:\install_projects\3.7.2\lib\CompuCell3DPlugins\CC3DConvergentExtension.lib" File "D:\install_projects\3.7.2\lib\CompuCell3DPlugins\CC3DCurvature.dll" File "D:\install_projects\3.7.2\lib\CompuCell3DPlugins\CC3DCurvature.lib" File "D:\install_projects\3.7.2\lib\CompuCell3DPlugins\CC3DElasticity.dll" File "D:\install_projects\3.7.2\lib\CompuCell3DPlugins\CC3DElasticity.lib" File "D:\install_projects\3.7.2\lib\CompuCell3DPlugins\CC3DElasticityTracker.dll" File "D:\install_projects\3.7.2\lib\CompuCell3DPlugins\CC3DElasticityTracker.lib" File "D:\install_projects\3.7.2\lib\CompuCell3DPlugins\CC3DExternalPotential.dll" File "D:\install_projects\3.7.2\lib\CompuCell3DPlugins\CC3DExternalPotential.lib" File "D:\install_projects\3.7.2\lib\CompuCell3DPlugins\CC3DFocalPointPlasticity.dll" File "D:\install_projects\3.7.2\lib\CompuCell3DPlugins\CC3DFocalPointPlasticity.lib" File "D:\install_projects\3.7.2\lib\CompuCell3DPlugins\CC3DGlobalBoundaryPixelTracker.dll" File "D:\install_projects\3.7.2\lib\CompuCell3DPlugins\CC3DGlobalBoundaryPixelTracker.lib" File "D:\install_projects\3.7.2\lib\CompuCell3DPlugins\CC3DLengthConstraint.dll" File "D:\install_projects\3.7.2\lib\CompuCell3DPlugins\CC3DLengthConstraint.lib" File "D:\install_projects\3.7.2\lib\CompuCell3DPlugins\CC3DMitosis.dll" File "D:\install_projects\3.7.2\lib\CompuCell3DPlugins\CC3DMitosis.lib" File "D:\install_projects\3.7.2\lib\CompuCell3DPlugins\CC3DMomentOfInertia.dll" File "D:\install_projects\3.7.2\lib\CompuCell3DPlugins\CC3DMomentOfInertia.lib" File "D:\install_projects\3.7.2\lib\CompuCell3DPlugins\CC3DNeighborStick.dll" File "D:\install_projects\3.7.2\lib\CompuCell3DPlugins\CC3DNeighborStick.lib" File "D:\install_projects\3.7.2\lib\CompuCell3DPlugins\CC3DNeighborTracker.dll" File "D:\install_projects\3.7.2\lib\CompuCell3DPlugins\CC3DNeighborTracker.lib" File "D:\install_projects\3.7.2\lib\CompuCell3DPlugins\CC3DOrientedContact.dll" File "D:\install_projects\3.7.2\lib\CompuCell3DPlugins\CC3DOrientedContact.lib" File "D:\install_projects\3.7.2\lib\CompuCell3DPlugins\CC3DPDESolverCaller.dll" File "D:\install_projects\3.7.2\lib\CompuCell3DPlugins\CC3DPDESolverCaller.lib" File "D:\install_projects\3.7.2\lib\CompuCell3DPlugins\CC3DPixelTracker.dll" File "D:\install_projects\3.7.2\lib\CompuCell3DPlugins\CC3DPixelTracker.lib" File "D:\install_projects\3.7.2\lib\CompuCell3DPlugins\CC3DPlasticity.dll" File "D:\install_projects\3.7.2\lib\CompuCell3DPlugins\CC3DPlasticity.lib" File "D:\install_projects\3.7.2\lib\CompuCell3DPlugins\CC3DPlasticityTracker.dll" File "D:\install_projects\3.7.2\lib\CompuCell3DPlugins\CC3DPlasticityTracker.lib" File "D:\install_projects\3.7.2\lib\CompuCell3DPlugins\CC3DPlayerSettings.dll" File "D:\install_projects\3.7.2\lib\CompuCell3DPlugins\CC3DPlayerSettings.lib" File "D:\install_projects\3.7.2\lib\CompuCell3DPlugins\CC3DPolarization23.dll" File "D:\install_projects\3.7.2\lib\CompuCell3DPlugins\CC3DPolarization23.lib" File "D:\install_projects\3.7.2\lib\CompuCell3DPlugins\CC3DPolarizationVector.dll" File "D:\install_projects\3.7.2\lib\CompuCell3DPlugins\CC3DPolarizationVector.lib" File "D:\install_projects\3.7.2\lib\CompuCell3DPlugins\CC3DRearrangement.dll" File "D:\install_projects\3.7.2\lib\CompuCell3DPlugins\CC3DRearrangement.lib" File "D:\install_projects\3.7.2\lib\CompuCell3DPlugins\CC3DSecretion.dll" File "D:\install_projects\3.7.2\lib\CompuCell3DPlugins\CC3DSecretion.lib" File "D:\install_projects\3.7.2\lib\CompuCell3DPlugins\CC3DSimpleClock.dll" File "D:\install_projects\3.7.2\lib\CompuCell3DPlugins\CC3DSimpleClock.lib" File "D:\install_projects\3.7.2\lib\CompuCell3DPlugins\CC3DStretchness.dll" File "D:\install_projects\3.7.2\lib\CompuCell3DPlugins\CC3DStretchness.lib" File "D:\install_projects\3.7.2\lib\CompuCell3DPlugins\CC3DSurface.dll" File "D:\install_projects\3.7.2\lib\CompuCell3DPlugins\CC3DSurface.lib" File "D:\install_projects\3.7.2\lib\CompuCell3DPlugins\CC3DSurfaceTracker.dll" File "D:\install_projects\3.7.2\lib\CompuCell3DPlugins\CC3DSurfaceTracker.lib" File "D:\install_projects\3.7.2\lib\CompuCell3DPlugins\CC3DTemplate.dll" File "D:\install_projects\3.7.2\lib\CompuCell3DPlugins\CC3DTemplate.lib" File "D:\install_projects\3.7.2\lib\CompuCell3DPlugins\CC3DViscosity.dll" File "D:\install_projects\3.7.2\lib\CompuCell3DPlugins\CC3DViscosity.lib" File "D:\install_projects\3.7.2\lib\CompuCell3DPlugins\CC3DVolume.dll" File "D:\install_projects\3.7.2\lib\CompuCell3DPlugins\CC3DVolume.lib" File "D:\install_projects\3.7.2\lib\CompuCell3DPlugins\CC3DVolumeTracker.dll" File "D:\install_projects\3.7.2\lib\CompuCell3DPlugins\CC3DVolumeTracker.lib" SetOutPath "$INSTDIR\lib\CompuCell3DSteppables" File "D:\install_projects\3.7.2\lib\CompuCell3DSteppables\CC3DBlobFieldInitializer.dll" File "D:\install_projects\3.7.2\lib\CompuCell3DSteppables\CC3DBlobFieldInitializer.lib" File "D:\install_projects\3.7.2\lib\CompuCell3DSteppables\CC3DBoxWatcher.dll" File "D:\install_projects\3.7.2\lib\CompuCell3DSteppables\CC3DBoxWatcher.lib" File "D:\install_projects\3.7.2\lib\CompuCell3DSteppables\CC3DCleaverMeshDumper.dll" File "D:\install_projects\3.7.2\lib\CompuCell3DSteppables\CC3DCleaverMeshDumper.lib" File "D:\install_projects\3.7.2\lib\CompuCell3DSteppables\CC3DDicty.dll" File "D:\install_projects\3.7.2\lib\CompuCell3DSteppables\CC3DDicty.lib" File "D:\install_projects\3.7.2\lib\CompuCell3DSteppables\CC3DFoamDataOutput.dll" File "D:\install_projects\3.7.2\lib\CompuCell3DSteppables\CC3DFoamDataOutput.lib" File "D:\install_projects\3.7.2\lib\CompuCell3DSteppables\CC3DMitosisSteppable.dll" File "D:\install_projects\3.7.2\lib\CompuCell3DSteppables\CC3DMitosisSteppable.lib" File "D:\install_projects\3.7.2\lib\CompuCell3DSteppables\CC3DObjInitializer.dll" File "D:\install_projects\3.7.2\lib\CompuCell3DSteppables\CC3DObjInitializer.lib" File "D:\install_projects\3.7.2\lib\CompuCell3DSteppables\CC3DPDESolvers.dll" File "D:\install_projects\3.7.2\lib\CompuCell3DSteppables\CC3DPDESolvers.lib" File "D:\install_projects\3.7.2\lib\CompuCell3DSteppables\CC3DPIFDumper.dll" File "D:\install_projects\3.7.2\lib\CompuCell3DSteppables\CC3DPIFDumper.lib" File "D:\install_projects\3.7.2\lib\CompuCell3DSteppables\CC3DPIFInitializer.dll" File "D:\install_projects\3.7.2\lib\CompuCell3DSteppables\CC3DPIFInitializer.lib" File "D:\install_projects\3.7.2\lib\CompuCell3DSteppables\CC3DRandomInitializers.dll" File "D:\install_projects\3.7.2\lib\CompuCell3DSteppables\CC3DRandomInitializers.lib" File "D:\install_projects\3.7.2\lib\CompuCell3DSteppables\CC3DUniformFieldInitializer.dll" File "D:\install_projects\3.7.2\lib\CompuCell3DSteppables\CC3DUniformFieldInitializer.lib" File "D:\install_projects\3.7.2\lib\CompuCell3DSteppables\FlexibleDiffusionSolverFE_OpenCL.dll" File "D:\install_projects\3.7.2\lib\CompuCell3DSteppables\FlexibleDiffusionSolverFE_OpenCL.lib" SetOutPath "$INSTDIR\lib\CompuCell3DSteppables\OpenCL" File "D:\install_projects\3.7.2\lib\CompuCell3DSteppables\OpenCL\common.cl" File "D:\install_projects\3.7.2\lib\CompuCell3DSteppables\OpenCL\DiffusionKernel.cl" File "D:\install_projects\3.7.2\lib\CompuCell3DSteppables\OpenCL\GPUBoundaryConditions.h" File "D:\install_projects\3.7.2\lib\CompuCell3DSteppables\OpenCL\GPUSolverParams.h" File "D:\install_projects\3.7.2\lib\CompuCell3DSteppables\OpenCL\ImplicitMatrix.cl" SetOutPath "$INSTDIR\lib\python" File "D:\install_projects\3.7.2\lib\python\BionetSolverPy.py" File "D:\install_projects\3.7.2\lib\python\CC3DXML.py" File "D:\install_projects\3.7.2\lib\python\CompuCell.py" File "D:\install_projects\3.7.2\lib\python\Example.py" File "D:\install_projects\3.7.2\lib\python\Fields.py" File "D:\install_projects\3.7.2\lib\python\PlayerPython.py" File "D:\install_projects\3.7.2\lib\python\SerializerDEPy.py" File "D:\install_projects\3.7.2\lib\python\_BionetSolverPy.pyd" File "D:\install_projects\3.7.2\lib\python\_CC3DXML.pyd" File "D:\install_projects\3.7.2\lib\python\_CompuCell.pyd" File "D:\install_projects\3.7.2\lib\python\_Example.pyd" File "D:\install_projects\3.7.2\lib\python\_Fields.pyd" File "D:\install_projects\3.7.2\lib\python\_PlayerPython.pyd" File "D:\install_projects\3.7.2\lib\python\_SerializerDEPy.pyd" SetOutPath "$INSTDIR\lib\python\roadrunner" File "D:\install_projects\3.7.2\lib\python\roadrunner\roadrunner.py" File "D:\install_projects\3.7.2\lib\python\roadrunner\_roadrunner.pyd" File "D:\install_projects\3.7.2\lib\python\roadrunner\__init__.py" SetOutPath "$INSTDIR\lib\python\roadrunner\testing" File "D:\install_projects\3.7.2\lib\python\roadrunner\testing\feedback.xml" File "D:\install_projects\3.7.2\lib\python\roadrunner\testing\README.txt" File "D:\install_projects\3.7.2\lib\python\roadrunner\testing\results_roadRunnerTest_1.txt" File "D:\install_projects\3.7.2\lib\python\roadrunner\testing\tester.py" File "D:\install_projects\3.7.2\lib\python\roadrunner\testing\testfiles.py" File "D:\install_projects\3.7.2\lib\python\roadrunner\testing\test_1.xml" File "D:\install_projects\3.7.2\lib\python\roadrunner\testing\__init__.py" File "D:\install_projects\3.7.2\lib\python\roadrunner\testing\__main__.py" SetOutPath "$INSTDIR\lib\PythonDeps" File "D:\install_projects\3.7.2\lib\PythonDeps\sip.exe" File "D:\install_projects\3.7.2\lib\PythonDeps\sip.pyd" SetOutPath "$INSTDIR\lib\PythonDeps\PyQt4" File "D:\install_projects\3.7.2\lib\PythonDeps\PyQt4\phonon.pyd" File "D:\install_projects\3.7.2\lib\PythonDeps\PyQt4\pyqtconfig.py" File "D:\install_projects\3.7.2\lib\PythonDeps\PyQt4\QAxContainer.pyd" File "D:\install_projects\3.7.2\lib\PythonDeps\PyQt4\Qsci.pyd" File "D:\install_projects\3.7.2\lib\PythonDeps\PyQt4\Qt.pyd" File "D:\install_projects\3.7.2\lib\PythonDeps\PyQt4\QtCore.pyd" File "D:\install_projects\3.7.2\lib\PythonDeps\PyQt4\QtDeclarative.pyd" File "D:\install_projects\3.7.2\lib\PythonDeps\PyQt4\QtDesigner.pyd" File "D:\install_projects\3.7.2\lib\PythonDeps\PyQt4\QtGui.pyd" File "D:\install_projects\3.7.2\lib\PythonDeps\PyQt4\QtHelp.pyd" File "D:\install_projects\3.7.2\lib\PythonDeps\PyQt4\QtMultimedia.pyd" File "D:\install_projects\3.7.2\lib\PythonDeps\PyQt4\QtNetwork.pyd" File "D:\install_projects\3.7.2\lib\PythonDeps\PyQt4\QtOpenGL.pyd" File "D:\install_projects\3.7.2\lib\PythonDeps\PyQt4\QtScript.pyd" File "D:\install_projects\3.7.2\lib\PythonDeps\PyQt4\QtScriptTools.pyd" File "D:\install_projects\3.7.2\lib\PythonDeps\PyQt4\QtSql.pyd" File "D:\install_projects\3.7.2\lib\PythonDeps\PyQt4\QtSvg.pyd" File "D:\install_projects\3.7.2\lib\PythonDeps\PyQt4\QtTest.pyd" File "D:\install_projects\3.7.2\lib\PythonDeps\PyQt4\QtWebKit.pyd" File "D:\install_projects\3.7.2\lib\PythonDeps\PyQt4\QtXml.pyd" File "D:\install_projects\3.7.2\lib\PythonDeps\PyQt4\QtXmlPatterns.pyd" File "D:\install_projects\3.7.2\lib\PythonDeps\PyQt4\__init__.py" SetOutPath "$INSTDIR\lib\PythonDeps\PyQt4\Qwt5" File "D:\install_projects\3.7.2\lib\PythonDeps\PyQt4\Qwt5\anynumpy.py" File "D:\install_projects\3.7.2\lib\PythonDeps\PyQt4\Qwt5\grace.py" File "D:\install_projects\3.7.2\lib\PythonDeps\PyQt4\Qwt5\ipy_user_conf.py" File "D:\install_projects\3.7.2\lib\PythonDeps\PyQt4\Qwt5\iqt.py" File "D:\install_projects\3.7.2\lib\PythonDeps\PyQt4\Qwt5\pythonrc.py" File "D:\install_projects\3.7.2\lib\PythonDeps\PyQt4\Qwt5\qplt.py" File "D:\install_projects\3.7.2\lib\PythonDeps\PyQt4\Qwt5\Qwt.pyd" File "D:\install_projects\3.7.2\lib\PythonDeps\PyQt4\Qwt5\_iqt.pyd" File "D:\install_projects\3.7.2\lib\PythonDeps\PyQt4\Qwt5\__init__.py" SetOutPath "$INSTDIR\lib\PythonDeps\PyQt4\uic" File "D:\install_projects\3.7.2\lib\PythonDeps\PyQt4\uic\driver.py" File "D:\install_projects\3.7.2\lib\PythonDeps\PyQt4\uic\exceptions.py" File "D:\install_projects\3.7.2\lib\PythonDeps\PyQt4\uic\icon_cache.py" File "D:\install_projects\3.7.2\lib\PythonDeps\PyQt4\uic\objcreator.py" File "D:\install_projects\3.7.2\lib\PythonDeps\PyQt4\uic\properties.py" File "D:\install_projects\3.7.2\lib\PythonDeps\PyQt4\uic\pyuic.py" File "D:\install_projects\3.7.2\lib\PythonDeps\PyQt4\uic\uiparser.py" File "D:\install_projects\3.7.2\lib\PythonDeps\PyQt4\uic\__init__.py" SetOutPath "$INSTDIR\lib\PythonDeps\PyQt4\uic\Compiler" File "D:\install_projects\3.7.2\lib\PythonDeps\PyQt4\uic\Compiler\compiler.py" File "D:\install_projects\3.7.2\lib\PythonDeps\PyQt4\uic\Compiler\indenter.py" File "D:\install_projects\3.7.2\lib\PythonDeps\PyQt4\uic\Compiler\misc.py" File "D:\install_projects\3.7.2\lib\PythonDeps\PyQt4\uic\Compiler\proxy_metaclass.py" File "D:\install_projects\3.7.2\lib\PythonDeps\PyQt4\uic\Compiler\proxy_type.py" File "D:\install_projects\3.7.2\lib\PythonDeps\PyQt4\uic\Compiler\qobjectcreator.py" File "D:\install_projects\3.7.2\lib\PythonDeps\PyQt4\uic\Compiler\qtproxies.py" File "D:\install_projects\3.7.2\lib\PythonDeps\PyQt4\uic\Compiler\__init__.py" SetOutPath "$INSTDIR\lib\PythonDeps\PyQt4\uic\Loader" File "D:\install_projects\3.7.2\lib\PythonDeps\PyQt4\uic\Loader\loader.py" File "D:\install_projects\3.7.2\lib\PythonDeps\PyQt4\uic\Loader\qobjectcreator.py" File "D:\install_projects\3.7.2\lib\PythonDeps\PyQt4\uic\Loader\__init__.py" SetOutPath "$INSTDIR\lib\PythonDeps\PyQt4\uic\port_v2" File "D:\install_projects\3.7.2\lib\PythonDeps\PyQt4\uic\port_v2\ascii_upper.py" File "D:\install_projects\3.7.2\lib\PythonDeps\PyQt4\uic\port_v2\as_string.py" File "D:\install_projects\3.7.2\lib\PythonDeps\PyQt4\uic\port_v2\invoke.py" File "D:\install_projects\3.7.2\lib\PythonDeps\PyQt4\uic\port_v2\load_plugin.py" File "D:\install_projects\3.7.2\lib\PythonDeps\PyQt4\uic\port_v2\proxy_base.py" File "D:\install_projects\3.7.2\lib\PythonDeps\PyQt4\uic\port_v2\string_io.py" File "D:\install_projects\3.7.2\lib\PythonDeps\PyQt4\uic\port_v2\__init__.py" SetOutPath "$INSTDIR\lib\PythonDeps\PyQt4\uic\port_v3" File "D:\install_projects\3.7.2\lib\PythonDeps\PyQt4\uic\port_v3\ascii_upper.py" File "D:\install_projects\3.7.2\lib\PythonDeps\PyQt4\uic\port_v3\as_string.py" File "D:\install_projects\3.7.2\lib\PythonDeps\PyQt4\uic\port_v3\invoke.py" File "D:\install_projects\3.7.2\lib\PythonDeps\PyQt4\uic\port_v3\load_plugin.py" File "D:\install_projects\3.7.2\lib\PythonDeps\PyQt4\uic\port_v3\proxy_base.py" File "D:\install_projects\3.7.2\lib\PythonDeps\PyQt4\uic\port_v3\string_io.py" File "D:\install_projects\3.7.2\lib\PythonDeps\PyQt4\uic\port_v3\__init__.py" SetOutPath "$INSTDIR\lib\PythonDeps\PyQt4\uic\widget-plugins" File "D:\install_projects\3.7.2\lib\PythonDeps\PyQt4\uic\widget-plugins\phonon.py" File "D:\install_projects\3.7.2\lib\PythonDeps\PyQt4\uic\widget-plugins\qaxcontainer.py" File "D:\install_projects\3.7.2\lib\PythonDeps\PyQt4\uic\widget-plugins\qscintilla.py" File "D:\install_projects\3.7.2\lib\PythonDeps\PyQt4\uic\widget-plugins\qtdeclarative.py" File "D:\install_projects\3.7.2\lib\PythonDeps\PyQt4\uic\widget-plugins\qtwebkit.py" File "D:\install_projects\3.7.2\lib\PythonDeps\PyQt4\uic\widget-plugins\qwt.py" SetOutPath "$INSTDIR\lib\PythonDeps\sip" SetOutPath "$INSTDIR\lib\PythonDeps\sip\phonon" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\phonon\abstractaudiooutput.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\phonon\abstractvideooutput.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\phonon\audiooutput.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\phonon\backendcapabilities.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\phonon\effect.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\phonon\effectparameter.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\phonon\effectwidget.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\phonon\mediacontroller.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\phonon\medianode.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\phonon\mediaobject.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\phonon\mediasource.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\phonon\objectdescription.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\phonon\path.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\phonon\phononmod.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\phonon\phononnamespace.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\phonon\seekslider.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\phonon\videoplayer.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\phonon\videowidget.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\phonon\volumeslider.sip" SetOutPath "$INSTDIR\lib\PythonDeps\sip\QAxContainer" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QAxContainer\qaxbase.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QAxContainer\QAxContainermod.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QAxContainer\qaxobject.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QAxContainer\qaxwidget.sip" SetOutPath "$INSTDIR\lib\PythonDeps\sip\Qsci" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\Qsci\qsciabstractapis.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\Qsci\qsciapis.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\Qsci\qscicommand.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\Qsci\qscicommandset.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\Qsci\qscidocument.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\Qsci\qscilexer.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\Qsci\qscilexerbash.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\Qsci\qscilexerbatch.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\Qsci\qscilexercmake.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\Qsci\qscilexercpp.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\Qsci\qscilexercsharp.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\Qsci\qscilexercss.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\Qsci\qscilexercustom.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\Qsci\qscilexerd.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\Qsci\qscilexerdiff.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\Qsci\qscilexerfortran.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\Qsci\qscilexerfortran77.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\Qsci\qscilexerhtml.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\Qsci\qscilexeridl.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\Qsci\qscilexerjava.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\Qsci\qscilexerjavascript.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\Qsci\qscilexerlua.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\Qsci\qscilexermakefile.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\Qsci\qscilexermatlab.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\Qsci\qscilexeroctave.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\Qsci\qscilexerpascal.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\Qsci\qscilexerperl.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\Qsci\qscilexerpostscript.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\Qsci\qscilexerpov.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\Qsci\qscilexerproperties.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\Qsci\qscilexerpython.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\Qsci\qscilexerruby.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\Qsci\qscilexerspice.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\Qsci\qscilexersql.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\Qsci\qscilexertcl.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\Qsci\qscilexertex.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\Qsci\qscilexerverilog.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\Qsci\qscilexervhdl.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\Qsci\qscilexerxml.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\Qsci\qscilexeryaml.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\Qsci\qscimacro.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\Qsci\qscimod3.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\Qsci\qscimod4.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\Qsci\qscimod5.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\Qsci\qscimodcommon.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\Qsci\qsciprinter.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\Qsci\qsciscintilla.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\Qsci\qsciscintillabase3.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\Qsci\qsciscintillabase4.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\Qsci\qscistyle.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\Qsci\qscistyledtext.sip" SetOutPath "$INSTDIR\lib\PythonDeps\sip\Qt" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\Qt\Qtmod.sip" SetOutPath "$INSTDIR\lib\PythonDeps\sip\QtCore" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtCore\qabstractanimation.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtCore\qabstracteventdispatcher.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtCore\qabstractfileengine.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtCore\qabstractitemmodel.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtCore\qabstractnativeeventfilter.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtCore\qabstractstate.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtCore\qabstracttransition.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtCore\qanimationgroup.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtCore\qbasictimer.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtCore\qbitarray.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtCore\qbuffer.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtCore\qbytearray.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtCore\qbytearraymatcher.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtCore\qchar.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtCore\qcoreapplication.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtCore\qcoreevent.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtCore\qcryptographichash.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtCore\qdatastream.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtCore\qdatetime.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtCore\qdir.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtCore\qdiriterator.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtCore\qeasingcurve.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtCore\qelapsedtimer.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtCore\qeventloop.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtCore\qeventtransition.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtCore\qfile.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtCore\qfiledevice.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtCore\qfileinfo.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtCore\qfilesystemwatcher.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtCore\qfinalstate.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtCore\qfsfileengine.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtCore\qglobal.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtCore\qhash.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtCore\qhistorystate.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtCore\qiodevice.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtCore\qlibrary.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtCore\qlibraryinfo.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtCore\qline.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtCore\qlist.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtCore\qlocale.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtCore\qmap.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtCore\qmargins.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtCore\qmetaobject.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtCore\qmetatype.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtCore\qmimedata.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtCore\qmutex.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtCore\qnamespace.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtCore\qnumeric.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtCore\qobject.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtCore\qobjectcleanuphandler.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtCore\qobjectdefs.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtCore\qpair.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtCore\qparallelanimationgroup.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtCore\qpauseanimation.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtCore\qpluginloader.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtCore\qpoint.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtCore\qprocess.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtCore\qpropertyanimation.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtCore\qpynullvariant.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtCore\qreadwritelock.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtCore\qrect.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtCore\qregexp.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtCore\qresource.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtCore\qrunnable.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtCore\qsemaphore.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtCore\qsequentialanimationgroup.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtCore\qset.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtCore\qsettings.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtCore\qsharedmemory.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtCore\qsignalmapper.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtCore\qsignaltransition.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtCore\qsize.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtCore\qsocketnotifier.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtCore\qstate.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtCore\qstatemachine.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtCore\qstring.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtCore\qstringlist.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtCore\qstringmatcher.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtCore\qsystemsemaphore.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtCore\QtCoremod.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtCore\qtemporaryfile.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtCore\qtextboundaryfinder.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtCore\qtextcodec.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtCore\qtextstream.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtCore\qthread.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtCore\qthreadpool.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtCore\qtimeline.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtCore\qtimer.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtCore\qtranslator.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtCore\qurl.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtCore\qurlquery.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtCore\quuid.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtCore\qvariant.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtCore\qvariantanimation.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtCore\qvector.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtCore\qwaitcondition.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtCore\qwineventnotifier.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtCore\qxmlstream.sip" SetOutPath "$INSTDIR\lib\PythonDeps\sip\QtDeclarative" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtDeclarative\qdeclarativecomponent.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtDeclarative\qdeclarativecontext.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtDeclarative\qdeclarativeengine.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtDeclarative\qdeclarativeerror.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtDeclarative\qdeclarativeexpression.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtDeclarative\qdeclarativeextensionplugin.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtDeclarative\qdeclarativeimageprovider.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtDeclarative\qdeclarativeitem.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtDeclarative\qdeclarativelist.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtDeclarative\qdeclarativenetworkaccessmanagerfactory.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtDeclarative\qdeclarativeparserstatus.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtDeclarative\qdeclarativeproperty.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtDeclarative\qdeclarativepropertymap.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtDeclarative\qdeclarativepropertyvaluesource.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtDeclarative\qdeclarativescriptstring.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtDeclarative\qdeclarativeview.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtDeclarative\qpydeclarativelistproperty.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtDeclarative\qpydeclarativepropertyvaluesource.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtDeclarative\QtDeclarativemod.sip" SetOutPath "$INSTDIR\lib\PythonDeps\sip\QtDesigner" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtDesigner\abstractactioneditor.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtDesigner\abstractformbuilder.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtDesigner\abstractformeditor.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtDesigner\abstractformwindow.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtDesigner\abstractformwindowcursor.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtDesigner\abstractformwindowmanager.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtDesigner\abstractobjectinspector.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtDesigner\abstractpropertyeditor.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtDesigner\abstractwidgetbox.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtDesigner\container.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtDesigner\customwidget.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtDesigner\default_extensionfactory.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtDesigner\extension.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtDesigner\formbuilder.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtDesigner\membersheet.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtDesigner\propertysheet.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtDesigner\qextensionmanager.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtDesigner\qpydesignercontainerextension.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtDesigner\qpydesignercustomwidgetcollectionplugin.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtDesigner\qpydesignercustomwidgetplugin.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtDesigner\qpydesignermembersheetextension.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtDesigner\qpydesignerpropertysheetextension.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtDesigner\qpydesignertaskmenuextension.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtDesigner\QtDesignermod.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtDesigner\taskmenu.sip" SetOutPath "$INSTDIR\lib\PythonDeps\sip\QtGui" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtGui\qabstractbutton.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtGui\qabstractitemdelegate.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtGui\qabstractitemview.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtGui\qabstractprintdialog.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtGui\qabstractproxymodel.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtGui\qabstractscrollarea.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtGui\qabstractslider.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtGui\qabstractspinbox.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtGui\qabstracttextdocumentlayout.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtGui\qaction.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtGui\qactiongroup.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtGui\qapplication.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtGui\qbitmap.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtGui\qboxlayout.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtGui\qbrush.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtGui\qbuttongroup.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtGui\qcalendarwidget.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtGui\qcheckbox.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtGui\qclipboard.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtGui\qcolor.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtGui\qcolordialog.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtGui\qcolumnview.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtGui\qcombobox.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtGui\qcommandlinkbutton.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtGui\qcommonstyle.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtGui\qcompleter.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtGui\qcursor.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtGui\qdatawidgetmapper.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtGui\qdatetimeedit.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtGui\qdesktopservices.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtGui\qdesktopwidget.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtGui\qdial.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtGui\qdialog.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtGui\qdialogbuttonbox.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtGui\qdirmodel.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtGui\qdockwidget.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtGui\qdrag.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtGui\qdrawutil.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtGui\qerrormessage.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtGui\qevent.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtGui\qfiledialog.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtGui\qfileiconprovider.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtGui\qfilesystemmodel.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtGui\qfocusframe.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtGui\qfont.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtGui\qfontcombobox.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtGui\qfontdatabase.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtGui\qfontdialog.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtGui\qfontinfo.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtGui\qfontmetrics.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtGui\qformlayout.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtGui\qframe.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtGui\qgenericmatrix.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtGui\qgesture.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtGui\qgesturerecognizer.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtGui\qglyphrun.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtGui\qgraphicsanchorlayout.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtGui\qgraphicseffect.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtGui\qgraphicsgridlayout.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtGui\qgraphicsitem.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtGui\qgraphicsitemanimation.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtGui\qgraphicslayout.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtGui\qgraphicslayoutitem.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtGui\qgraphicslinearlayout.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtGui\qgraphicsproxywidget.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtGui\qgraphicsscene.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtGui\qgraphicssceneevent.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtGui\qgraphicstransform.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtGui\qgraphicsview.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtGui\qgraphicswidget.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtGui\qgridlayout.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtGui\qgroupbox.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtGui\qguiapplication.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtGui\qheaderview.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtGui\qicon.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtGui\qiconengine.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtGui\qidentityproxymodel.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtGui\qimage.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtGui\qimageiohandler.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtGui\qimagereader.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtGui\qimagewriter.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtGui\qinputcontext.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtGui\qinputcontextfactory.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtGui\qinputdialog.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtGui\qitemdelegate.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtGui\qitemeditorfactory.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtGui\qitemselectionmodel.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtGui\qkeyeventtransition.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtGui\qkeysequence.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtGui\qlabel.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtGui\qlayout.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtGui\qlayoutitem.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtGui\qlcdnumber.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtGui\qlineedit.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtGui\qlistview.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtGui\qlistwidget.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtGui\qmainwindow.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtGui\qmatrix.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtGui\qmatrix4x4.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtGui\qmdiarea.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtGui\qmdisubwindow.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtGui\qmenu.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtGui\qmenubar.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtGui\qmessagebox.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtGui\qmime.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtGui\qmouseeventtransition.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtGui\qmovie.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtGui\qpagedpaintdevice.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtGui\qpagesetupdialog.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtGui\qpaintdevice.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtGui\qpaintengine.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtGui\qpainter.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtGui\qpainterpath.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtGui\qpalette.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtGui\qpen.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtGui\qpicture.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtGui\qpixmap.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtGui\qpixmapcache.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtGui\qplaintextedit.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtGui\qpolygon.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtGui\qprintdialog.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtGui\qprintengine.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtGui\qprinter.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtGui\qprinterinfo.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtGui\qprintpreviewdialog.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtGui\qprintpreviewwidget.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtGui\qprogressbar.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtGui\qprogressdialog.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtGui\qproxymodel.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtGui\qpushbutton.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtGui\qpytextobject.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtGui\qquaternion.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtGui\qradiobutton.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtGui\qrawfont.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtGui\qregion.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtGui\qrgb.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtGui\qrubberband.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtGui\qscreen.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtGui\qscrollarea.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtGui\qscrollbar.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtGui\qsessionmanager.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtGui\qshortcut.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtGui\qsizegrip.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtGui\qsizepolicy.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtGui\qslider.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtGui\qsortfilterproxymodel.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtGui\qsound.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtGui\qspinbox.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtGui\qsplashscreen.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtGui\qsplitter.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtGui\qstackedlayout.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtGui\qstackedwidget.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtGui\qstandarditemmodel.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtGui\qstatictext.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtGui\qstatusbar.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtGui\qstringlistmodel.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtGui\qstyle.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtGui\qstyleditemdelegate.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtGui\qstylefactory.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtGui\qstyleoption.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtGui\qstylepainter.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtGui\qsyntaxhighlighter.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtGui\qsystemtrayicon.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtGui\qtabbar.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtGui\qtableview.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtGui\qtablewidget.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtGui\qtabwidget.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtGui\qtextbrowser.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtGui\qtextcursor.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtGui\qtextdocument.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtGui\qtextdocumentfragment.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtGui\qtextdocumentwriter.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtGui\qtextedit.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtGui\qtextformat.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtGui\qtextlayout.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtGui\qtextlist.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtGui\qtextobject.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtGui\qtextoption.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtGui\qtexttable.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtGui\QtGuimod.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtGui\qtoolbar.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtGui\qtoolbox.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtGui\qtoolbutton.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtGui\qtooltip.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtGui\qtouchdevice.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtGui\qtransform.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtGui\qtreeview.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtGui\qtreewidget.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtGui\qtreewidgetitemiterator.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtGui\qundogroup.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtGui\qundostack.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtGui\qundoview.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtGui\qvalidator.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtGui\qvector2d.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtGui\qvector3d.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtGui\qvector4d.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtGui\qwhatsthis.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtGui\qwidget.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtGui\qwidgetaction.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtGui\qwindowdefs.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtGui\qwizard.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtGui\qworkspace.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtGui\qx11embed_x11.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtGui\qx11info_x11.sip" SetOutPath "$INSTDIR\lib\PythonDeps\sip\QtHelp" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtHelp\qhelpcontentwidget.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtHelp\qhelpengine.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtHelp\qhelpenginecore.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtHelp\qhelpindexwidget.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtHelp\qhelpsearchengine.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtHelp\qhelpsearchquerywidget.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtHelp\qhelpsearchresultwidget.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtHelp\QtHelpmod.sip" SetOutPath "$INSTDIR\lib\PythonDeps\sip\QtMultimedia" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtMultimedia\qabstractvideobuffer.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtMultimedia\qabstractvideosurface.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtMultimedia\qaudio.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtMultimedia\qaudiodeviceinfo.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtMultimedia\qaudioformat.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtMultimedia\qaudioinput.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtMultimedia\qaudiooutput.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtMultimedia\QtMultimediamod.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtMultimedia\qvideoframe.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtMultimedia\qvideosurfaceformat.sip" SetOutPath "$INSTDIR\lib\PythonDeps\sip\QtNetwork" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtNetwork\qabstractnetworkcache.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtNetwork\qabstractsocket.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtNetwork\qauthenticator.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtNetwork\qdnslookup.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtNetwork\qftp.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtNetwork\qhostaddress.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtNetwork\qhostinfo.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtNetwork\qhttp.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtNetwork\qhttpmultipart.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtNetwork\qlocalserver.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtNetwork\qlocalsocket.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtNetwork\qnetworkaccessmanager.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtNetwork\qnetworkconfigmanager.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtNetwork\qnetworkconfiguration.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtNetwork\qnetworkcookie.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtNetwork\qnetworkcookiejar.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtNetwork\qnetworkdiskcache.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtNetwork\qnetworkinterface.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtNetwork\qnetworkproxy.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtNetwork\qnetworkreply.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtNetwork\qnetworkrequest.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtNetwork\qnetworksession.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtNetwork\qssl.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtNetwork\qsslcertificate.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtNetwork\qsslcertificateextension.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtNetwork\qsslcipher.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtNetwork\qsslconfiguration.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtNetwork\qsslerror.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtNetwork\qsslkey.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtNetwork\qsslsocket.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtNetwork\qtcpserver.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtNetwork\qtcpsocket.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtNetwork\QtNetworkmod.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtNetwork\qudpsocket.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtNetwork\qurlinfo.sip" SetOutPath "$INSTDIR\lib\PythonDeps\sip\QtOpenGL" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtOpenGL\opengl_types.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtOpenGL\qgl.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtOpenGL\qglbuffer.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtOpenGL\qglcolormap.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtOpenGL\qglframebufferobject.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtOpenGL\qglpixelbuffer.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtOpenGL\qglshaderprogram.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtOpenGL\QtOpenGLmod.sip" SetOutPath "$INSTDIR\lib\PythonDeps\sip\QtScript" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtScript\qscriptclass.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtScript\qscriptclasspropertyiterator.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtScript\qscriptcontext.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtScript\qscriptcontextinfo.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtScript\qscriptengine.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtScript\qscriptengineagent.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtScript\qscriptstring.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtScript\qscriptvalue.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtScript\qscriptvalueiterator.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtScript\QtScriptmod.sip" SetOutPath "$INSTDIR\lib\PythonDeps\sip\QtScriptTools" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtScriptTools\qscriptenginedebugger.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtScriptTools\QtScriptToolsmod.sip" SetOutPath "$INSTDIR\lib\PythonDeps\sip\QtSql" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtSql\qsql.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtSql\qsqldatabase.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtSql\qsqldriver.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtSql\qsqlerror.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtSql\qsqlfield.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtSql\qsqlindex.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtSql\qsqlquery.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtSql\qsqlquerymodel.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtSql\qsqlrecord.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtSql\qsqlrelationaldelegate.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtSql\qsqlrelationaltablemodel.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtSql\qsqlresult.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtSql\qsqltablemodel.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtSql\QtSqlmod.sip" SetOutPath "$INSTDIR\lib\PythonDeps\sip\QtSvg" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtSvg\qgraphicssvgitem.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtSvg\qsvggenerator.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtSvg\qsvgrenderer.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtSvg\qsvgwidget.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtSvg\QtSvgmod.sip" SetOutPath "$INSTDIR\lib\PythonDeps\sip\QtTest" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtTest\qtestcase.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtTest\qtestkeyboard.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtTest\qtestmouse.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtTest\qtestsystem.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtTest\QtTestmod.sip" SetOutPath "$INSTDIR\lib\PythonDeps\sip\QtWebKit" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtWebKit\qgraphicswebview.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtWebKit\QtWebKitmod.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtWebKit\qwebdatabase.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtWebKit\qwebelement.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtWebKit\qwebframe.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtWebKit\qwebhistory.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtWebKit\qwebhistoryinterface.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtWebKit\qwebinspector.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtWebKit\qwebkitglobal.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtWebKit\qwebkitversion.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtWebKit\qwebpage.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtWebKit\qwebpluginfactory.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtWebKit\qwebsecurityorigin.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtWebKit\qwebsettings.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtWebKit\qwebview.sip" SetOutPath "$INSTDIR\lib\PythonDeps\sip\QtXml" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtXml\qdom.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtXml\QtXmlmod.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtXml\qxml.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtXml\qxmlstream.sip" SetOutPath "$INSTDIR\lib\PythonDeps\sip\QtXmlPatterns" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtXmlPatterns\qabstractmessagehandler.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtXmlPatterns\qabstracturiresolver.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtXmlPatterns\qabstractxmlnodemodel.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtXmlPatterns\qabstractxmlreceiver.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtXmlPatterns\qsimplexmlnodemodel.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtXmlPatterns\qsourcelocation.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtXmlPatterns\QtXmlPatternsmod.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtXmlPatterns\qxmlformatter.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtXmlPatterns\qxmlname.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtXmlPatterns\qxmlnamepool.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtXmlPatterns\qxmlquery.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtXmlPatterns\qxmlresultitems.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtXmlPatterns\qxmlschema.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtXmlPatterns\qxmlschemavalidator.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\QtXmlPatterns\qxmlserializer.sip" SetOutPath "$INSTDIR\lib\PythonDeps\sip\Qwt5" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\Qwt5\QwtArrayDouble.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\Qwt5\QwtArrayInt.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\Qwt5\QwtArrayQwtDoubleInterval.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\Qwt5\QwtArrayQwtDoublePoint.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\Qwt5\QwtList.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\Qwt5\QwtMap.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\Qwt5\QwtModule.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\Qwt5\QwtStack.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\Qwt5\QwtTypes.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\Qwt5\qwt_abstract_scale.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\Qwt5\qwt_abstract_scale_draw.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\Qwt5\qwt_abstract_slider.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\Qwt5\qwt_analog_clock.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\Qwt5\qwt_arrow_button.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\Qwt5\qwt_clipper.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\Qwt5\qwt_color_map.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\Qwt5\qwt_compass.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\Qwt5\qwt_compass_rose.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\Qwt5\qwt_counter.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\Qwt5\qwt_curve_fitter.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\Qwt5\qwt_data.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\Qwt5\qwt_dial.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\Qwt5\qwt_dial_needle.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\Qwt5\qwt_double_interval.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\Qwt5\qwt_double_range.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\Qwt5\qwt_dyngrid_layout.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\Qwt5\qwt_event_pattern.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\Qwt5\qwt_interval_data.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\Qwt5\qwt_knob.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\Qwt5\qwt_layout_metrics.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\Qwt5\qwt_legend.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\Qwt5\qwt_legend_item.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\Qwt5\qwt_legend_itemmanager.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\Qwt5\qwt_magnifier.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\Qwt5\qwt_painter.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\Qwt5\qwt_panner.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\Qwt5\qwt_picker.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\Qwt5\qwt_picker_machine.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\Qwt5\qwt_plot.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\Qwt5\qwt_plot_canvas.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\Qwt5\qwt_plot_curve.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\Qwt5\qwt_plot_dict.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\Qwt5\qwt_plot_grid.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\Qwt5\qwt_plot_item.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\Qwt5\qwt_plot_layout.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\Qwt5\qwt_plot_magnifier.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\Qwt5\qwt_plot_marker.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\Qwt5\qwt_plot_panner.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\Qwt5\qwt_plot_picker.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\Qwt5\qwt_plot_printfilter.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\Qwt5\qwt_plot_rasteritem.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\Qwt5\qwt_plot_rescaler.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\Qwt5\qwt_plot_scaleitem.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\Qwt5\qwt_plot_spectrogram.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\Qwt5\qwt_plot_svgitem.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\Qwt5\qwt_plot_zoomer.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\Qwt5\qwt_raster_data.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\Qwt5\qwt_rect.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\Qwt5\qwt_round_scale_draw.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\Qwt5\qwt_scale_div.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\Qwt5\qwt_scale_draw.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\Qwt5\qwt_scale_engine.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\Qwt5\qwt_scale_map.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\Qwt5\qwt_scale_widget.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\Qwt5\qwt_slider.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\Qwt5\qwt_spline.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\Qwt5\qwt_symbol.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\Qwt5\qwt_text.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\Qwt5\qwt_text_engine.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\Qwt5\qwt_text_label.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\Qwt5\qwt_thermo.sip" File "D:\install_projects\3.7.2\lib\PythonDeps\sip\Qwt5\qwt_wheel.sip" SetOutPath "$INSTDIR\lib\PythonDeps\vtk" File "D:\install_projects\3.7.2\lib\PythonDeps\vtk\charts.py" File "D:\install_projects\3.7.2\lib\PythonDeps\vtk\chemistry.py" File "D:\install_projects\3.7.2\lib\PythonDeps\vtk\common.py" File "D:\install_projects\3.7.2\lib\PythonDeps\vtk\filtering.py" File "D:\install_projects\3.7.2\lib\PythonDeps\vtk\genericfiltering.py" File "D:\install_projects\3.7.2\lib\PythonDeps\vtk\geovis.py" File "D:\install_projects\3.7.2\lib\PythonDeps\vtk\graphics.py" File "D:\install_projects\3.7.2\lib\PythonDeps\vtk\hybrid.py" File "D:\install_projects\3.7.2\lib\PythonDeps\vtk\imaging.py" File "D:\install_projects\3.7.2\lib\PythonDeps\vtk\infovis.py" File "D:\install_projects\3.7.2\lib\PythonDeps\vtk\io.py" File "D:\install_projects\3.7.2\lib\PythonDeps\vtk\parallel.py" File "D:\install_projects\3.7.2\lib\PythonDeps\vtk\qvtk.py" File "D:\install_projects\3.7.2\lib\PythonDeps\vtk\rendering.py" File "D:\install_projects\3.7.2\lib\PythonDeps\vtk\required.py" File "D:\install_projects\3.7.2\lib\PythonDeps\vtk\textanalysis.py" File "D:\install_projects\3.7.2\lib\PythonDeps\vtk\views.py" File "D:\install_projects\3.7.2\lib\PythonDeps\vtk\volumerendering.py" File "D:\install_projects\3.7.2\lib\PythonDeps\vtk\vtkChartsPython.pyd" File "D:\install_projects\3.7.2\lib\PythonDeps\vtk\vtkCommonPython.pyd" File "D:\install_projects\3.7.2\lib\PythonDeps\vtk\vtkFilteringPython.pyd" File "D:\install_projects\3.7.2\lib\PythonDeps\vtk\vtkGenericFilteringPython.pyd" File "D:\install_projects\3.7.2\lib\PythonDeps\vtk\vtkGeovisPython.pyd" File "D:\install_projects\3.7.2\lib\PythonDeps\vtk\vtkGraphicsPython.pyd" File "D:\install_projects\3.7.2\lib\PythonDeps\vtk\vtkHybridPython.pyd" File "D:\install_projects\3.7.2\lib\PythonDeps\vtk\vtkImagingPython.pyd" File "D:\install_projects\3.7.2\lib\PythonDeps\vtk\vtkInfovisPython.pyd" File "D:\install_projects\3.7.2\lib\PythonDeps\vtk\vtkIOPython.pyd" File "D:\install_projects\3.7.2\lib\PythonDeps\vtk\vtkRenderingPython.pyd" File "D:\install_projects\3.7.2\lib\PythonDeps\vtk\vtkViewsPython.pyd" File "D:\install_projects\3.7.2\lib\PythonDeps\vtk\vtkVolumeRenderingPython.pyd" File "D:\install_projects\3.7.2\lib\PythonDeps\vtk\vtkWidgetsPython.pyd" File "D:\install_projects\3.7.2\lib\PythonDeps\vtk\widgets.py" File "D:\install_projects\3.7.2\lib\PythonDeps\vtk\__helper.py" File "D:\install_projects\3.7.2\lib\PythonDeps\vtk\__init__.py" SetOutPath "$INSTDIR\lib\PythonDeps\vtk\gtk" File "D:\install_projects\3.7.2\lib\PythonDeps\vtk\gtk\GtkGLExtVTKRenderWindow.py" File "D:\install_projects\3.7.2\lib\PythonDeps\vtk\gtk\GtkGLExtVTKRenderWindowInteractor.py" File "D:\install_projects\3.7.2\lib\PythonDeps\vtk\gtk\GtkVTKRenderWindow.py" File "D:\install_projects\3.7.2\lib\PythonDeps\vtk\gtk\GtkVTKRenderWindowInteractor.py" File "D:\install_projects\3.7.2\lib\PythonDeps\vtk\gtk\__init__.py" SetOutPath "$INSTDIR\lib\PythonDeps\vtk\qt" File "D:\install_projects\3.7.2\lib\PythonDeps\vtk\qt\QVTKRenderWidget.py" File "D:\install_projects\3.7.2\lib\PythonDeps\vtk\qt\QVTKRenderWindowInteractor.py" File "D:\install_projects\3.7.2\lib\PythonDeps\vtk\qt\__init__.py" SetOutPath "$INSTDIR\lib\PythonDeps\vtk\qt4" File "D:\install_projects\3.7.2\lib\PythonDeps\vtk\qt4\QVTKRenderWindowInteractor.py" File "D:\install_projects\3.7.2\lib\PythonDeps\vtk\qt4\__init__.py" SetOutPath "$INSTDIR\lib\PythonDeps\vtk\test" File "D:\install_projects\3.7.2\lib\PythonDeps\vtk\test\BlackBox.py" File "D:\install_projects\3.7.2\lib\PythonDeps\vtk\test\Testing.py" File "D:\install_projects\3.7.2\lib\PythonDeps\vtk\test\__init__.py" SetOutPath "$INSTDIR\lib\PythonDeps\vtk\tk" File "D:\install_projects\3.7.2\lib\PythonDeps\vtk\tk\vtkLoadPythonTkWidgets.py" File "D:\install_projects\3.7.2\lib\PythonDeps\vtk\tk\vtkTkImageViewerWidget.py" File "D:\install_projects\3.7.2\lib\PythonDeps\vtk\tk\vtkTkPhotoImage.py" File "D:\install_projects\3.7.2\lib\PythonDeps\vtk\tk\vtkTkRenderWidget.py" File "D:\install_projects\3.7.2\lib\PythonDeps\vtk\tk\vtkTkRenderWindowInteractor.py" File "D:\install_projects\3.7.2\lib\PythonDeps\vtk\tk\__init__.py" SetOutPath "$INSTDIR\lib\PythonDeps\vtk\util" File "D:\install_projects\3.7.2\lib\PythonDeps\vtk\util\colors.py" File "D:\install_projects\3.7.2\lib\PythonDeps\vtk\util\misc.py" File "D:\install_projects\3.7.2\lib\PythonDeps\vtk\util\numpy_support.py" File "D:\install_projects\3.7.2\lib\PythonDeps\vtk\util\vtkConstants.py" File "D:\install_projects\3.7.2\lib\PythonDeps\vtk\util\vtkImageExportToArray.py" File "D:\install_projects\3.7.2\lib\PythonDeps\vtk\util\vtkImageImportFromArray.py" File "D:\install_projects\3.7.2\lib\PythonDeps\vtk\util\vtkMethodParser.py" File "D:\install_projects\3.7.2\lib\PythonDeps\vtk\util\vtkVariant.py" File "D:\install_projects\3.7.2\lib\PythonDeps\vtk\util\__init__.py" SetOutPath "$INSTDIR\lib\PythonDeps\vtk\wx" File "D:\install_projects\3.7.2\lib\PythonDeps\vtk\wx\wxVTKRenderWindow.py" File "D:\install_projects\3.7.2\lib\PythonDeps\vtk\wx\wxVTKRenderWindowInteractor.py" File "D:\install_projects\3.7.2\lib\PythonDeps\vtk\wx\__init__.py" SetOutPath "$INSTDIR\player" File "D:\install_projects\3.7.2\player\compucell3d.pyw" File "D:\install_projects\3.7.2\player\CompuCellPythonSimulationCML.py" File "D:\install_projects\3.7.2\player\plugins.txt" SetOutPath "$INSTDIR\player\Configuration" File "D:\install_projects\3.7.2\player\Configuration\ConfigurationDialog.py" File "D:\install_projects\3.7.2\player\Configuration\ConfigurationPageBase.py" File "D:\install_projects\3.7.2\player\Configuration\Settings.py" File "D:\install_projects\3.7.2\player\Configuration\ui_configurationdlg.py" File "D:\install_projects\3.7.2\player\Configuration\__init__.py" SetOutPath "$INSTDIR\player\CQt" File "D:\install_projects\3.7.2\player\CQt\CQApplication.py" File "D:\install_projects\3.7.2\player\CQt\__init__.py" SetOutPath "$INSTDIR\player\CustomGui" File "D:\install_projects\3.7.2\player\CustomGui\CTabWidget.py" File "D:\install_projects\3.7.2\player\CustomGui\__init__.py" SetOutPath "$INSTDIR\player\Graphics" File "D:\install_projects\3.7.2\player\Graphics\CameraSettings.py" File "D:\install_projects\3.7.2\player\Graphics\CustomActorsStorage.py" File "D:\install_projects\3.7.2\player\Graphics\DrawingParameters.py" File "D:\install_projects\3.7.2\player\Graphics\GraphicsFrameWidget.py" File "D:\install_projects\3.7.2\player\Graphics\MVCDrawModel2D.py" File "D:\install_projects\3.7.2\player\Graphics\MVCDrawModel3D.py" File "D:\install_projects\3.7.2\player\Graphics\MVCDrawModelBase.py" File "D:\install_projects\3.7.2\player\Graphics\MVCDrawView2D.py" File "D:\install_projects\3.7.2\player\Graphics\MVCDrawView3D.py" File "D:\install_projects\3.7.2\player\Graphics\MVCDrawViewBase.py" File "D:\install_projects\3.7.2\player\Graphics\PlotFrameWidget.py" File "D:\install_projects\3.7.2\player\Graphics\PlotFrameWidgetVTK.py" File "D:\install_projects\3.7.2\player\Graphics\__init__.py" SetOutPath "$INSTDIR\player\icons" File "D:\install_projects\3.7.2\player\icons\cc3d_64x64_logo.png" File "D:\install_projects\3.7.2\player\icons\cellcolors.png" File "D:\install_projects\3.7.2\player\icons\close.png" File "D:\install_projects\3.7.2\player\icons\colormap.png" File "D:\install_projects\3.7.2\player\icons\config.png" File "D:\install_projects\3.7.2\player\icons\dicty.png" File "D:\install_projects\3.7.2\player\icons\exit.png" File "D:\install_projects\3.7.2\player\icons\exit2.png" File "D:\install_projects\3.7.2\player\icons\fileopen.png" File "D:\install_projects\3.7.2\player\icons\frequency.png" File "D:\install_projects\3.7.2\player\icons\goto.png" File "D:\install_projects\3.7.2\player\icons\help.png" File "D:\install_projects\3.7.2\player\icons\kcmkwm.png" File "D:\install_projects\3.7.2\player\icons\man.png" File "D:\install_projects\3.7.2\player\icons\open.png" File "D:\install_projects\3.7.2\player\icons\pause.png" File "D:\install_projects\3.7.2\player\icons\play.png" File "D:\install_projects\3.7.2\player\icons\plot.png" File "D:\install_projects\3.7.2\player\icons\plugin.png" File "D:\install_projects\3.7.2\player\icons\save-simulation.png" File "D:\install_projects\3.7.2\player\icons\save.png" File "D:\install_projects\3.7.2\player\icons\screenshot.png" File "D:\install_projects\3.7.2\player\icons\screenshots_open.png" File "D:\install_projects\3.7.2\player\icons\screenshots_save.png" File "D:\install_projects\3.7.2\player\icons\screenshots_save_alt.png" File "D:\install_projects\3.7.2\player\icons\script.png" File "D:\install_projects\3.7.2\player\icons\sim.png" File "D:\install_projects\3.7.2\player\icons\step.png" File "D:\install_projects\3.7.2\player\icons\stop.png" File "D:\install_projects\3.7.2\player\icons\threedview.png" File "D:\install_projects\3.7.2\player\icons\toolbars.png" File "D:\install_projects\3.7.2\player\icons\twedit-icon.png" File "D:\install_projects\3.7.2\player\icons\vectorfield.png" File "D:\install_projects\3.7.2\player\icons\whatsThis.png" File "D:\install_projects\3.7.2\player\icons\window_new.png" File "D:\install_projects\3.7.2\player\icons\zoomIn.png" File "D:\install_projects\3.7.2\player\icons\zoomOut.png" SetOutPath "$INSTDIR\player\Messaging" File "D:\install_projects\3.7.2\player\Messaging\__init__.py" SetOutPath "$INSTDIR\player\PluginManager" File "D:\install_projects\3.7.2\player\PluginManager\PluginManager.py" SetOutPath "$INSTDIR\player\Plugins" File "D:\install_projects\3.7.2\player\Plugins\__init__.py" SetOutPath "$INSTDIR\player\Plugins\ViewManagerPlugins" File "D:\install_projects\3.7.2\player\Plugins\ViewManagerPlugins\PlotManager.py" File "D:\install_projects\3.7.2\player\Plugins\ViewManagerPlugins\PlotManagerSetup.py" File "D:\install_projects\3.7.2\player\Plugins\ViewManagerPlugins\PlotManagerSetupVTK.py" File "D:\install_projects\3.7.2\player\Plugins\ViewManagerPlugins\PlotManagerVTK.py" File "D:\install_projects\3.7.2\player\Plugins\ViewManagerPlugins\RollbackImporter.py" File "D:\install_projects\3.7.2\player\Plugins\ViewManagerPlugins\ScreenshotManager.py" File "D:\install_projects\3.7.2\player\Plugins\ViewManagerPlugins\SimpleTabView.py" File "D:\install_projects\3.7.2\player\Plugins\ViewManagerPlugins\__init__.py" SetOutPath "$INSTDIR\player\Simulation" File "D:\install_projects\3.7.2\player\Simulation\CMLResultReader.py" File "D:\install_projects\3.7.2\player\Simulation\SimulationThread.py" File "D:\install_projects\3.7.2\player\Simulation\__init__.py" SetOutPath "$INSTDIR\player\UI" File "D:\install_projects\3.7.2\player\UI\CC3DSender.py" File "D:\install_projects\3.7.2\player\UI\Console.py" File "D:\install_projects\3.7.2\player\UI\CPlugins.py" File "D:\install_projects\3.7.2\player\UI\ErrorConsole.py" File "D:\install_projects\3.7.2\player\UI\LatticeDataModelTable.py" File "D:\install_projects\3.7.2\player\UI\ModelEditor.py" File "D:\install_projects\3.7.2\player\UI\UserInterface.py" File "D:\install_projects\3.7.2\player\UI\__init__.py" SetOutPath "$INSTDIR\player\Utilities" File "D:\install_projects\3.7.2\player\Utilities\CPluginsModel.py" File "D:\install_projects\3.7.2\player\Utilities\LatticeDataModel.py" File "D:\install_projects\3.7.2\player\Utilities\QVTKRenderWidget.py" File "D:\install_projects\3.7.2\player\Utilities\QVTKRenderWindowInteractor.py" File "D:\install_projects\3.7.2\player\Utilities\QVTKRenderWindowInteractor_mac.py" File "D:\install_projects\3.7.2\player\Utilities\SimDelegate.py" File "D:\install_projects\3.7.2\player\Utilities\SimModel.py" File "D:\install_projects\3.7.2\player\Utilities\TreeMapper.py" File "D:\install_projects\3.7.2\player\Utilities\__init__.py" SetOutPath "$INSTDIR\player\ViewManager" File "D:\install_projects\3.7.2\player\ViewManager\SimpleViewManager.py" File "D:\install_projects\3.7.2\player\ViewManager\__init__.py" SetOutPath "$INSTDIR\Prerequisites" File "D:\install_projects\3.7.2\Prerequisites\numpy-1.5.1-win32-superpack-python2.7.exe" File "D:\install_projects\3.7.2\Prerequisites\python-2.7.1.msi" File "D:\install_projects\3.7.2\Prerequisites\pywin32-216.win32-py2.7.exe" File "D:\install_projects\3.7.2\Prerequisites\vcredist_x86.exe" SetOutPath "$INSTDIR\pythonSetupScripts" File "D:\install_projects\3.7.2\pythonSetupScripts\basicCompuCellPythonSimulation.py" File "D:\install_projects\3.7.2\pythonSetupScripts\basicCompuCellPythonSimulationNew.py" File "D:\install_projects\3.7.2\pythonSetupScripts\BasicSimulationData.py" File "D:\install_projects\3.7.2\pythonSetupScripts\bionetAPI.py" File "D:\install_projects\3.7.2\pythonSetupScripts\CC3DSimulationDataHandler.py" File "D:\install_projects\3.7.2\pythonSetupScripts\cellsort_2D.xml" File "D:\install_projects\3.7.2\pythonSetupScripts\CMLFieldHandler.py" File "D:\install_projects\3.7.2\pythonSetupScripts\CMLFieldStorage.py" File "D:\install_projects\3.7.2\pythonSetupScripts\CMLParser.py" File "D:\install_projects\3.7.2\pythonSetupScripts\compucell3d.bat" File "D:\install_projects\3.7.2\pythonSetupScripts\CompuCellPythonSimulation.py" File "D:\install_projects\3.7.2\pythonSetupScripts\CompuCellPythonSimulationNewPlayer.py" File "D:\install_projects\3.7.2\pythonSetupScripts\CompuCellSetup.py" File "D:\install_projects\3.7.2\pythonSetupScripts\enums.py" File "D:\install_projects\3.7.2\pythonSetupScripts\envVarSanitizer.py" File "D:\install_projects\3.7.2\pythonSetupScripts\FileLock.py" File "D:\install_projects\3.7.2\pythonSetupScripts\OrderedDict.py" File "D:\install_projects\3.7.2\pythonSetupScripts\ParameterScanEnums.py" File "D:\install_projects\3.7.2\pythonSetupScripts\ParameterScanUtils.py" File "D:\install_projects\3.7.2\pythonSetupScripts\PyDictAdder.py" File "D:\install_projects\3.7.2\pythonSetupScripts\PyListAdder.py" File "D:\install_projects\3.7.2\pythonSetupScripts\PyPlugins.py" File "D:\install_projects\3.7.2\pythonSetupScripts\PyPluginsExamples.py" File "D:\install_projects\3.7.2\pythonSetupScripts\PySteppables.py" File "D:\install_projects\3.7.2\pythonSetupScripts\PySteppablesExamples.py" File "D:\install_projects\3.7.2\pythonSetupScripts\RestartManager.py" File "D:\install_projects\3.7.2\pythonSetupScripts\RevisionNumber.py" File "D:\install_projects\3.7.2\pythonSetupScripts\RoadRunnerPy.py" File "D:\install_projects\3.7.2\pythonSetupScripts\SBMLSolverHelper.py" File "D:\install_projects\3.7.2\pythonSetupScripts\SystemUtils.py" File "D:\install_projects\3.7.2\pythonSetupScripts\TypeChangeWatcherExample.py" File "D:\install_projects\3.7.2\pythonSetupScripts\Version.py" File "D:\install_projects\3.7.2\pythonSetupScripts\XMLUtils.py" File "D:\install_projects\3.7.2\pythonSetupScripts\xml_python_expat.bat" File "D:\install_projects\3.7.2\pythonSetupScripts\xml_python_expat.py" File "D:\install_projects\3.7.2\pythonSetupScripts\xml_python_expat_1.py" SetOutPath "$INSTDIR\Twedit++" File "D:\install_projects\3.7.2\Twedit++\bringupTwedit.py" File "D:\install_projects\3.7.2\Twedit++\Configuration.py" File "D:\install_projects\3.7.2\Twedit++\configurationdlg.py" File "D:\install_projects\3.7.2\Twedit++\CycleTabsPopup.py" File "D:\install_projects\3.7.2\Twedit++\DataSocketCommunicators.py" File "D:\install_projects\3.7.2\Twedit++\DOMUtils.py" File "D:\install_projects\3.7.2\Twedit++\EditorWindow.py" File "D:\install_projects\3.7.2\Twedit++\findandreplacedlg.py" File "D:\install_projects\3.7.2\Twedit++\gotolinedlg.py" File "D:\install_projects\3.7.2\Twedit++\KeyboardShortcutsDlg.py" File "D:\install_projects\3.7.2\Twedit++\KeyShortcut.py" File "D:\install_projects\3.7.2\Twedit++\LanguageManager.py" File "D:\install_projects\3.7.2\Twedit++\PrinterTwedit.py" File "D:\install_projects\3.7.2\Twedit++\QsciScintillaCustom.py" File "D:\install_projects\3.7.2\Twedit++\ThemeManager.py" File "D:\install_projects\3.7.2\Twedit++\twedit_plus_plus.py" File "D:\install_projects\3.7.2\Twedit++\twedit_plus_plus_cc3d.py" File "D:\install_projects\3.7.2\Twedit++\twedit_plus_plus_rc.py" File "D:\install_projects\3.7.2\Twedit++\ui_configurationdlg.py" File "D:\install_projects\3.7.2\Twedit++\ui_findinfilesdlg.py" File "D:\install_projects\3.7.2\Twedit++\ui_gotolinedlg.py" File "D:\install_projects\3.7.2\Twedit++\ui_KeyboardShortcuts.py" File "D:\install_projects\3.7.2\Twedit++\ui_KeyShortcut.py" File "D:\install_projects\3.7.2\Twedit++\windowsUtils.py" SetOutPath "$INSTDIR\Twedit++\ActionManager" File "D:\install_projects\3.7.2\Twedit++\ActionManager\__init__.py" SetOutPath "$INSTDIR\Twedit++\APIs" File "D:\install_projects\3.7.2\Twedit++\APIs\cplusplus.api" File "D:\install_projects\3.7.2\Twedit++\APIs\csharp.api" File "D:\install_projects\3.7.2\Twedit++\APIs\css.api" File "D:\install_projects\3.7.2\Twedit++\APIs\html.api" File "D:\install_projects\3.7.2\Twedit++\APIs\java.api" File "D:\install_projects\3.7.2\Twedit++\APIs\javascript.api" File "D:\install_projects\3.7.2\Twedit++\APIs\perl.api" File "D:\install_projects\3.7.2\Twedit++\APIs\python.api" File "D:\install_projects\3.7.2\Twedit++\APIs\ruby.api" File "D:\install_projects\3.7.2\Twedit++\APIs\xml.api" SetOutPath "$INSTDIR\Twedit++\CQt" File "D:\install_projects\3.7.2\Twedit++\CQt\CQApplication.py" File "D:\install_projects\3.7.2\Twedit++\CQt\__init__.py" SetOutPath "$INSTDIR\Twedit++\Encoding" File "D:\install_projects\3.7.2\Twedit++\Encoding\__init__.py" SetOutPath "$INSTDIR\Twedit++\Encoding\EncodingDetector" File "D:\install_projects\3.7.2\Twedit++\Encoding\EncodingDetector\COPYING" File "D:\install_projects\3.7.2\Twedit++\Encoding\EncodingDetector\__init__.py" SetOutPath "$INSTDIR\Twedit++\Encoding\EncodingDetector\chardet" File "D:\install_projects\3.7.2\Twedit++\Encoding\EncodingDetector\chardet\big5freq.py" File "D:\install_projects\3.7.2\Twedit++\Encoding\EncodingDetector\chardet\big5prober.py" File "D:\install_projects\3.7.2\Twedit++\Encoding\EncodingDetector\chardet\chardistribution.py" File "D:\install_projects\3.7.2\Twedit++\Encoding\EncodingDetector\chardet\charsetgroupprober.py" File "D:\install_projects\3.7.2\Twedit++\Encoding\EncodingDetector\chardet\charsetprober.py" File "D:\install_projects\3.7.2\Twedit++\Encoding\EncodingDetector\chardet\codingstatemachine.py" File "D:\install_projects\3.7.2\Twedit++\Encoding\EncodingDetector\chardet\constants.py" File "D:\install_projects\3.7.2\Twedit++\Encoding\EncodingDetector\chardet\escprober.py" File "D:\install_projects\3.7.2\Twedit++\Encoding\EncodingDetector\chardet\escsm.py" File "D:\install_projects\3.7.2\Twedit++\Encoding\EncodingDetector\chardet\eucjpprober.py" File "D:\install_projects\3.7.2\Twedit++\Encoding\EncodingDetector\chardet\euckrfreq.py" File "D:\install_projects\3.7.2\Twedit++\Encoding\EncodingDetector\chardet\euckrprober.py" File "D:\install_projects\3.7.2\Twedit++\Encoding\EncodingDetector\chardet\euctwfreq.py" File "D:\install_projects\3.7.2\Twedit++\Encoding\EncodingDetector\chardet\euctwprober.py" File "D:\install_projects\3.7.2\Twedit++\Encoding\EncodingDetector\chardet\gb2312freq.py" File "D:\install_projects\3.7.2\Twedit++\Encoding\EncodingDetector\chardet\gb2312prober.py" File "D:\install_projects\3.7.2\Twedit++\Encoding\EncodingDetector\chardet\hebrewprober.py" File "D:\install_projects\3.7.2\Twedit++\Encoding\EncodingDetector\chardet\jisfreq.py" File "D:\install_projects\3.7.2\Twedit++\Encoding\EncodingDetector\chardet\jpcntx.py" File "D:\install_projects\3.7.2\Twedit++\Encoding\EncodingDetector\chardet\langbulgarianmodel.py" File "D:\install_projects\3.7.2\Twedit++\Encoding\EncodingDetector\chardet\langcyrillicmodel.py" File "D:\install_projects\3.7.2\Twedit++\Encoding\EncodingDetector\chardet\langgreekmodel.py" File "D:\install_projects\3.7.2\Twedit++\Encoding\EncodingDetector\chardet\langhebrewmodel.py" File "D:\install_projects\3.7.2\Twedit++\Encoding\EncodingDetector\chardet\langhungarianmodel.py" File "D:\install_projects\3.7.2\Twedit++\Encoding\EncodingDetector\chardet\langthaimodel.py" File "D:\install_projects\3.7.2\Twedit++\Encoding\EncodingDetector\chardet\latin1prober.py" File "D:\install_projects\3.7.2\Twedit++\Encoding\EncodingDetector\chardet\mbcharsetprober.py" File "D:\install_projects\3.7.2\Twedit++\Encoding\EncodingDetector\chardet\mbcsgroupprober.py" File "D:\install_projects\3.7.2\Twedit++\Encoding\EncodingDetector\chardet\mbcssm.py" File "D:\install_projects\3.7.2\Twedit++\Encoding\EncodingDetector\chardet\sbcharsetprober.py" File "D:\install_projects\3.7.2\Twedit++\Encoding\EncodingDetector\chardet\sbcsgroupprober.py" File "D:\install_projects\3.7.2\Twedit++\Encoding\EncodingDetector\chardet\sjisprober.py" File "D:\install_projects\3.7.2\Twedit++\Encoding\EncodingDetector\chardet\test.py" File "D:\install_projects\3.7.2\Twedit++\Encoding\EncodingDetector\chardet\universaldetector.py" File "D:\install_projects\3.7.2\Twedit++\Encoding\EncodingDetector\chardet\utf8prober.py" File "D:\install_projects\3.7.2\Twedit++\Encoding\EncodingDetector\chardet\__init__.py" SetOutPath "$INSTDIR\Twedit++\Encoding\EncodingDetector\docs" File "D:\install_projects\3.7.2\Twedit++\Encoding\EncodingDetector\docs\faq.html" File "D:\install_projects\3.7.2\Twedit++\Encoding\EncodingDetector\docs\history.html" File "D:\install_projects\3.7.2\Twedit++\Encoding\EncodingDetector\docs\how-it-works.html" File "D:\install_projects\3.7.2\Twedit++\Encoding\EncodingDetector\docs\index.html" File "D:\install_projects\3.7.2\Twedit++\Encoding\EncodingDetector\docs\license.html" File "D:\install_projects\3.7.2\Twedit++\Encoding\EncodingDetector\docs\supported-encodings.html" File "D:\install_projects\3.7.2\Twedit++\Encoding\EncodingDetector\docs\usage.html" SetOutPath "$INSTDIR\Twedit++\Encoding\EncodingDetector\docs\css" File "D:\install_projects\3.7.2\Twedit++\Encoding\EncodingDetector\docs\css\chardet.css" SetOutPath "$INSTDIR\Twedit++\Encoding\EncodingDetector\docs\images" File "D:\install_projects\3.7.2\Twedit++\Encoding\EncodingDetector\docs\images\caution.png" File "D:\install_projects\3.7.2\Twedit++\Encoding\EncodingDetector\docs\images\important.png" File "D:\install_projects\3.7.2\Twedit++\Encoding\EncodingDetector\docs\images\note.png" File "D:\install_projects\3.7.2\Twedit++\Encoding\EncodingDetector\docs\images\permalink.gif" File "D:\install_projects\3.7.2\Twedit++\Encoding\EncodingDetector\docs\images\tip.png" File "D:\install_projects\3.7.2\Twedit++\Encoding\EncodingDetector\docs\images\warning.png" SetOutPath "$INSTDIR\Twedit++\icons" File "D:\install_projects\3.7.2\Twedit++\icons\application-exit.png" File "D:\install_projects\3.7.2\Twedit++\icons\configure.png" File "D:\install_projects\3.7.2\Twedit++\icons\document-clean.png" File "D:\install_projects\3.7.2\Twedit++\icons\document-edited.png" File "D:\install_projects\3.7.2\Twedit++\icons\document-new.png" File "D:\install_projects\3.7.2\Twedit++\icons\document-open.png" File "D:\install_projects\3.7.2\Twedit++\icons\document-print-preview.png" File "D:\install_projects\3.7.2\Twedit++\icons\document-print.png" File "D:\install_projects\3.7.2\Twedit++\icons\document-save-all.png" File "D:\install_projects\3.7.2\Twedit++\icons\document-save-as.png" File "D:\install_projects\3.7.2\Twedit++\icons\document-save.png" File "D:\install_projects\3.7.2\Twedit++\icons\edit-copy.png" File "D:\install_projects\3.7.2\Twedit++\icons\edit-cut.png" File "D:\install_projects\3.7.2\Twedit++\icons\edit-delete.png" File "D:\install_projects\3.7.2\Twedit++\icons\edit-find.png" File "D:\install_projects\3.7.2\Twedit++\icons\edit-paste.png" File "D:\install_projects\3.7.2\Twedit++\icons\edit-redo.png" File "D:\install_projects\3.7.2\Twedit++\icons\edit-undo.png" File "D:\install_projects\3.7.2\Twedit++\icons\flag.png" File "D:\install_projects\3.7.2\Twedit++\icons\format-indent-less.png" File "D:\install_projects\3.7.2\Twedit++\icons\format-indent-more.png" File "D:\install_projects\3.7.2\Twedit++\icons\gear.png" File "D:\install_projects\3.7.2\Twedit++\icons\lizard-at-a-computer-small.png" File "D:\install_projects\3.7.2\Twedit++\icons\tab-close.png" File "D:\install_projects\3.7.2\Twedit++\icons\twedit-icon-setup.ico" File "D:\install_projects\3.7.2\Twedit++\icons\twedit-icon.ico" File "D:\install_projects\3.7.2\Twedit++\icons\twedit-icon.png" File "D:\install_projects\3.7.2\Twedit++\icons\zoom-in.png" File "D:\install_projects\3.7.2\Twedit++\icons\zoom-original.png" File "D:\install_projects\3.7.2\Twedit++\icons\zoom-out.png" SetOutPath "$INSTDIR\Twedit++\Messaging" File "D:\install_projects\3.7.2\Twedit++\Messaging\__init__.py" SetOutPath "$INSTDIR\Twedit++\PluginManager" File "D:\install_projects\3.7.2\Twedit++\PluginManager\PluginExceptions.py" File "D:\install_projects\3.7.2\Twedit++\PluginManager\PluginManager.py" File "D:\install_projects\3.7.2\Twedit++\PluginManager\__init__.py" SetOutPath "$INSTDIR\Twedit++\Plugins" File "D:\install_projects\3.7.2\Twedit++\Plugins\PluginCCDCPPHelper.py" File "D:\install_projects\3.7.2\Twedit++\Plugins\PluginCCDMLHelper.py" File "D:\install_projects\3.7.2\Twedit++\Plugins\PluginCCDProject.py" File "D:\install_projects\3.7.2\Twedit++\Plugins\PluginCCDPythonHelper.py" File "D:\install_projects\3.7.2\Twedit++\Plugins\PluginCompuCell3D.py" SetOutPath "$INSTDIR\Twedit++\Plugins\CC3DCPPHelper" File "D:\install_projects\3.7.2\Twedit++\Plugins\CC3DCPPHelper\Configuration.py" File "D:\install_projects\3.7.2\Twedit++\Plugins\CC3DCPPHelper\CPPModuleGeneratorDialog.py" File "D:\install_projects\3.7.2\Twedit++\Plugins\CC3DCPPHelper\CppTemplates.py" File "D:\install_projects\3.7.2\Twedit++\Plugins\CC3DCPPHelper\Snippets.cpp.template" File "D:\install_projects\3.7.2\Twedit++\Plugins\CC3DCPPHelper\ui_c_plus_plus_module_dialog.py" File "D:\install_projects\3.7.2\Twedit++\Plugins\CC3DCPPHelper\__init__.py" SetOutPath "$INSTDIR\Twedit++\Plugins\CC3DMLGenerator" File "D:\install_projects\3.7.2\Twedit++\Plugins\CC3DMLGenerator\CC3DMLGeneratorBase.py" File "D:\install_projects\3.7.2\Twedit++\Plugins\CC3DMLGenerator\__init__.py" SetOutPath "$INSTDIR\Twedit++\Plugins\CC3DMLHelper" File "D:\install_projects\3.7.2\Twedit++\Plugins\CC3DMLHelper\adhesionflexdlg.py" File "D:\install_projects\3.7.2\Twedit++\Plugins\CC3DMLHelper\celltypedlg.py" File "D:\install_projects\3.7.2\Twedit++\Plugins\CC3DMLHelper\SnippetUtils.py" File "D:\install_projects\3.7.2\Twedit++\Plugins\CC3DMLHelper\ui_adhesionflexdlg.py" File "D:\install_projects\3.7.2\Twedit++\Plugins\CC3DMLHelper\ui_celltypedlg.py" File "D:\install_projects\3.7.2\Twedit++\Plugins\CC3DMLHelper\__init__.py" SetOutPath "$INSTDIR\Twedit++\Plugins\CC3DProject" File "D:\install_projects\3.7.2\Twedit++\Plugins\CC3DProject\CC3DProject_rc.py" File "D:\install_projects\3.7.2\Twedit++\Plugins\CC3DProject\CC3DPythonGenerator.py" File "D:\install_projects\3.7.2\Twedit++\Plugins\CC3DProject\CC3DXMLGenerator.py" File "D:\install_projects\3.7.2\Twedit++\Plugins\CC3DProject\Configuration.py" File "D:\install_projects\3.7.2\Twedit++\Plugins\CC3DProject\enums.py" File "D:\install_projects\3.7.2\Twedit++\Plugins\CC3DProject\ItemProperties.py" File "D:\install_projects\3.7.2\Twedit++\Plugins\CC3DProject\NewFileWizard.py" File "D:\install_projects\3.7.2\Twedit++\Plugins\CC3DProject\NewSimulationWizard.py" File "D:\install_projects\3.7.2\Twedit++\Plugins\CC3DProject\ParameterDialog.py" File "D:\install_projects\3.7.2\Twedit++\Plugins\CC3DProject\ParValDlg.py" File "D:\install_projects\3.7.2\Twedit++\Plugins\CC3DProject\SerializerEdit.py" File "D:\install_projects\3.7.2\Twedit++\Plugins\CC3DProject\SteppableGeneratorDialog.py" File "D:\install_projects\3.7.2\Twedit++\Plugins\CC3DProject\SteppableTemplates.py" File "D:\install_projects\3.7.2\Twedit++\Plugins\CC3DProject\ui_itemproperties.py" File "D:\install_projects\3.7.2\Twedit++\Plugins\CC3DProject\ui_newfilewizard.py" File "D:\install_projects\3.7.2\Twedit++\Plugins\CC3DProject\ui_newsimulationwizard.py" File "D:\install_projects\3.7.2\Twedit++\Plugins\CC3DProject\ui_parameterdlg.py" File "D:\install_projects\3.7.2\Twedit++\Plugins\CC3DProject\ui_parvaldlg.py" File "D:\install_projects\3.7.2\Twedit++\Plugins\CC3DProject\ui_serializereditdlg.py" File "D:\install_projects\3.7.2\Twedit++\Plugins\CC3DProject\ui_steppablegeneratordialog.py" File "D:\install_projects\3.7.2\Twedit++\Plugins\CC3DProject\__init__.py" SetOutPath "$INSTDIR\Twedit++\Plugins\CC3DProject\icons" File "D:\install_projects\3.7.2\Twedit++\Plugins\CC3DProject\icons\add-serializer.png" File "D:\install_projects\3.7.2\Twedit++\Plugins\CC3DProject\icons\add.png" File "D:\install_projects\3.7.2\Twedit++\Plugins\CC3DProject\icons\addSteppable.png" File "D:\install_projects\3.7.2\Twedit++\Plugins\CC3DProject\icons\cc3d_64x64_logo.png" File "D:\install_projects\3.7.2\Twedit++\Plugins\CC3DProject\icons\editor.png" File "D:\install_projects\3.7.2\Twedit++\Plugins\CC3DProject\icons\new-project.png" File "D:\install_projects\3.7.2\Twedit++\Plugins\CC3DProject\icons\open-in-editor.png" File "D:\install_projects\3.7.2\Twedit++\Plugins\CC3DProject\icons\open-project.png" File "D:\install_projects\3.7.2\Twedit++\Plugins\CC3DProject\icons\pifgen_64x64.png" File "D:\install_projects\3.7.2\Twedit++\Plugins\CC3DProject\icons\player-icon.png" File "D:\install_projects\3.7.2\Twedit++\Plugins\CC3DProject\icons\python-icon.png" File "D:\install_projects\3.7.2\Twedit++\Plugins\CC3DProject\icons\remove.png" File "D:\install_projects\3.7.2\Twedit++\Plugins\CC3DProject\icons\reset_32x32.png" File "D:\install_projects\3.7.2\Twedit++\Plugins\CC3DProject\icons\reset_64x64.png" File "D:\install_projects\3.7.2\Twedit++\Plugins\CC3DProject\icons\save-project.png" File "D:\install_projects\3.7.2\Twedit++\Plugins\CC3DProject\icons\save-simulation.png" File "D:\install_projects\3.7.2\Twedit++\Plugins\CC3DProject\icons\scan_32x32.png" File "D:\install_projects\3.7.2\Twedit++\Plugins\CC3DProject\icons\scan_64x64.png" File "D:\install_projects\3.7.2\Twedit++\Plugins\CC3DProject\icons\xml-icon.png" SetOutPath "$INSTDIR\Twedit++\Plugins\CC3DPythonHelper" File "D:\install_projects\3.7.2\Twedit++\Plugins\CC3DPythonHelper\sbmlloaddlg.py" File "D:\install_projects\3.7.2\Twedit++\Plugins\CC3DPythonHelper\Snippets.py.template" File "D:\install_projects\3.7.2\Twedit++\Plugins\CC3DPythonHelper\ui_sbmlloaddlg.py" File "D:\install_projects\3.7.2\Twedit++\Plugins\CC3DPythonHelper\__init__.py" SetOutPath "$INSTDIR\Twedit++\Plugins\CompuCell3D" File "D:\install_projects\3.7.2\Twedit++\Plugins\CompuCell3D\CC3DListener.py" File "D:\install_projects\3.7.2\Twedit++\Plugins\CompuCell3D\PluginCompuCell3D_rc.py" File "D:\install_projects\3.7.2\Twedit++\Plugins\CompuCell3D\__init__.py" SetOutPath "$INSTDIR\Twedit++\Plugins\PluginUtils" File "D:\install_projects\3.7.2\Twedit++\Plugins\PluginUtils\SnippetMenuParser.py" File "D:\install_projects\3.7.2\Twedit++\Plugins\PluginUtils\__init__.py" SetOutPath "$INSTDIR\Twedit++\themes" File "D:\install_projects\3.7.2\Twedit++\themes\Bespin.xml" File "D:\install_projects\3.7.2\Twedit++\themes\Black board.xml" File "D:\install_projects\3.7.2\Twedit++\themes\Choco.xml" File "D:\install_projects\3.7.2\Twedit++\themes\Deep Black.xml" File "D:\install_projects\3.7.2\Twedit++\themes\Default.xml" File "D:\install_projects\3.7.2\Twedit++\themes\Hello Kitty.xml" File "D:\install_projects\3.7.2\Twedit++\themes\Mono Industrial.xml" File "D:\install_projects\3.7.2\Twedit++\themes\Monokai.xml" File "D:\install_projects\3.7.2\Twedit++\themes\Obsidian.xml" File "D:\install_projects\3.7.2\Twedit++\themes\Plastic Code Wrap.xml" File "D:\install_projects\3.7.2\Twedit++\themes\Ruby Blue.xml" File "D:\install_projects\3.7.2\Twedit++\themes\Twilight.xml" File "D:\install_projects\3.7.2\Twedit++\themes\Vibrant Ink.xml" File "D:\install_projects\3.7.2\Twedit++\themes\vim Dark Blue.xml" File "D:\install_projects\3.7.2\Twedit++\themes\Zenburn.xml" ### CUSTOM MODIFICATION # MessageBox MB_OK ' THIS IS Python Path $PYTHON_PATH27python $INSTDIR\scriptSetup.py $INSTDIR' DetailPrint "Postinstallation ..." ExecWait '$PYTHON_PATH27python "$INSTDIR\scriptSetup.py" "$INSTDIR" $PYTHON_PATH27 ' #removing unnecessary files Delete "$INSTDIR\Prerequisites\vcredist_x86.exe" Delete "$INSTDIR\Prerequisites\numpy-1.5.1-win32-superpack-python2.7.exe" Delete "$INSTDIR\Prerequisites\pywin32-216.win32-py2.7.exe" Delete "$INSTDIR\Prerequisites\python-2.7.1.msi" ### END OF CUSTOM MODIFICATION SectionEnd ###################################################################### ### CUSTOM MODIFICATION - Make sure to change uninstall.exe to uninstall-cc3d.exe everywhere in the installer script Section -Icons_Reg #!define CELLDRAW_DOCUMENTATION_LINK "file://$INSTDIR/CellDraw/CellDraw_manual/index.html" SetOutPath "$INSTDIR" WriteUninstaller "$INSTDIR\uninstall-cc3d.exe" !ifdef REG_START_MENU !insertmacro MUI_STARTMENU_WRITE_BEGIN Application CreateDirectory "$SMPROGRAMS\$SM_Folder" CreateShortCut "$SMPROGRAMS\$SM_Folder\${APP_NAME}.lnk" "$INSTDIR\${MAIN_APP_EXE}" "CompuCell3D Run Script" "$INSTDIR\icons\cc3d_128x128_logo.ico" CreateShortCut "$DESKTOP\${APP_NAME}.lnk" "$INSTDIR\${MAIN_APP_EXE}" "CompuCell3D Run Script" "$INSTDIR\icons\cc3d_128x128_logo.ico" CreateShortCut "$SMPROGRAMS\$SM_Folder\CellDraw.lnk" "$INSTDIR\${CELLDRAW_EXE}" "Tool to prepare initial cell layout" "$INSTDIR\CellDraw\icons\CellDraw_64x64.ico" CreateShortCut "$SMPROGRAMS\$SM_Folder\Twedit++.lnk" "$INSTDIR\${TWEDIT_EXE}" "" "$INSTDIR\Twedit++\icons\twedit-icon.ico" CreateShortCut "$SMPROGRAMS\$SM_Folder\Uninstall ${APP_NAME}.lnk" "$INSTDIR\uninstall-cc3d.exe" !ifdef WEB_SITE ; WriteIniStr "Website www.compucell3d.org" "InternetShortcut" "URL" "${WEB_SITE}" ; CreateShortCut "$SMPROGRAMS\$SM_Folder\${APP_NAME} Website.lnk" "Website www.compucell3d.org" "Website logo" "$INSTDIR\icons\cc3d_64x64_logo_www.ico" WriteIniStr "$INSTDIR\${APP_NAME} website.url" "InternetShortcut" "URL" "${WEB_SITE}" CreateShortCut "$SMPROGRAMS\$SM_Folder\${APP_NAME} Website.lnk" "$INSTDIR\${APP_NAME} website.url" "Website logo" "$INSTDIR\icons\cc3d_64x64_logo_www.ico" ; WriteIniStr "$INSTDIR\CellDraw_Documentation.url" "InternetShortcut" "URL" "${CELLDRAW_DOCUMENTATION_LINK}" ; CreateShortCut "$SMPROGRAMS\$SM_Folder\CellDraw Documentation.lnk" "$INSTDIR\CellDraw_Documentation.url" "CellDraw documentation logo" "$INSTDIR\CellDraw\icons\CellDraw_64x64_doc.ico" !endif !insertmacro MUI_STARTMENU_WRITE_END !endif WriteRegStr ${REG_ROOT} "${REG_APP_PATH}" "" "$INSTDIR\${MAIN_APP_EXE}" WriteRegStr ${REG_ROOT} "${UNINSTALL_PATH}" "DisplayName" "${APP_NAME}" WriteRegStr ${REG_ROOT} "${UNINSTALL_PATH}" "UninstallString" "$INSTDIR\uninstall-cc3d.exe" WriteRegStr ${REG_ROOT} "${UNINSTALL_PATH}" "DisplayIcon" "$INSTDIR\${MAIN_APP_EXE}" WriteRegStr ${REG_ROOT} "${UNINSTALL_PATH}" "DisplayVersion" "${VERSION}" WriteRegStr ${REG_ROOT} "${UNINSTALL_PATH}" "Publisher" "${COMP_NAME}" !ifdef WEB_SITE WriteRegStr ${REG_ROOT} "${UNINSTALL_PATH}" "URLInfoAbout" "${WEB_SITE}" !endif SectionEnd ### END OF CUSTOM MODIFICATION ###################################################################### Section Uninstall ${INSTALL_TYPE} Delete "$INSTDIR\celldraw.bat" Delete "$INSTDIR\celldraw.bat.in.v2" Delete "$INSTDIR\compucell3d.bat" Delete "$INSTDIR\compucell3d.bat.in.v2" Delete "$INSTDIR\runScript.bat" Delete "$INSTDIR\runScript.bat.in.v2" Delete "$INSTDIR\scriptSetup.py" Delete "$INSTDIR\twedit++.bat" Delete "$INSTDIR\twedit++.bat.in.v2" Delete "$INSTDIR\bin\bionetsolver.dll" Delete "$INSTDIR\bin\bzip2.dll" Delete "$INSTDIR\bin\CC3DBoundary.dll" Delete "$INSTDIR\bin\CC3DCompuCellLib.dll" Delete "$INSTDIR\bin\CC3DExpressionEvaluator.dll" Delete "$INSTDIR\bin\CC3DXMLUtils.dll" Delete "$INSTDIR\bin\CompuCell3D.exe" Delete "$INSTDIR\bin\ExampleClass.dll" Delete "$INSTDIR\bin\FieldExtractor.dll" Delete "$INSTDIR\bin\iconv.dll" Delete "$INSTDIR\bin\libsbml.dll" Delete "$INSTDIR\bin\libxml2.dll" Delete "$INSTDIR\bin\LSDyna.dll" Delete "$INSTDIR\bin\MapReduceMPI.dll" Delete "$INSTDIR\bin\mpistubs.dll" Delete "$INSTDIR\bin\OpenCL.dll" Delete "$INSTDIR\bin\python27.dll" Delete "$INSTDIR\bin\qscintilla2.dll" Delete "$INSTDIR\bin\QtCore4.dll" Delete "$INSTDIR\bin\QtGui4.dll" Delete "$INSTDIR\bin\QtNetwork4.dll" Delete "$INSTDIR\bin\QtOpenGL4.dll" Delete "$INSTDIR\bin\QtSvg4.dll" Delete "$INSTDIR\bin\QtXml4.dll" Delete "$INSTDIR\bin\sbmlsolver.dll" Delete "$INSTDIR\bin\SerializerDE.dll" Delete "$INSTDIR\bin\vtkalglib.dll" Delete "$INSTDIR\bin\vtkCharts.dll" Delete "$INSTDIR\bin\vtkChartsPythonD.dll" Delete "$INSTDIR\bin\vtkCommon.dll" Delete "$INSTDIR\bin\vtkCommonPythonD.dll" Delete "$INSTDIR\bin\vtkDICOMParser.dll" Delete "$INSTDIR\bin\vtkexoIIc.dll" Delete "$INSTDIR\bin\vtkexpat.dll" Delete "$INSTDIR\bin\vtkFiltering.dll" Delete "$INSTDIR\bin\vtkFilteringPythonD.dll" Delete "$INSTDIR\bin\vtkfreetype.dll" Delete "$INSTDIR\bin\vtkftgl.dll" Delete "$INSTDIR\bin\vtkGenericFiltering.dll" Delete "$INSTDIR\bin\vtkGenericFilteringPythonD.dll" Delete "$INSTDIR\bin\vtkGeovis.dll" Delete "$INSTDIR\bin\vtkGeovisPythonD.dll" Delete "$INSTDIR\bin\vtkGraphics.dll" Delete "$INSTDIR\bin\vtkGraphicsPythonD.dll" Delete "$INSTDIR\bin\vtkhdf5.dll" Delete "$INSTDIR\bin\vtkhdf5_hl.dll" Delete "$INSTDIR\bin\vtkHybrid.dll" Delete "$INSTDIR\bin\vtkHybridPythonD.dll" Delete "$INSTDIR\bin\vtkImaging.dll" Delete "$INSTDIR\bin\vtkImagingPythonD.dll" Delete "$INSTDIR\bin\vtkInfovis.dll" Delete "$INSTDIR\bin\vtkInfovisPythonD.dll" Delete "$INSTDIR\bin\vtkIO.dll" Delete "$INSTDIR\bin\vtkIOPythonD.dll" Delete "$INSTDIR\bin\vtkjpeg.dll" Delete "$INSTDIR\bin\vtklibxml2.dll" Delete "$INSTDIR\bin\vtkmetaio.dll" Delete "$INSTDIR\bin\vtkNetCDF.dll" Delete "$INSTDIR\bin\vtkNetCDF_cxx.dll" Delete "$INSTDIR\bin\vtkpng.dll" Delete "$INSTDIR\bin\vtkproj4.dll" Delete "$INSTDIR\bin\vtkPythonCore.dll" Delete "$INSTDIR\bin\vtkRendering.dll" Delete "$INSTDIR\bin\vtkRenderingPythonD.dll" Delete "$INSTDIR\bin\vtksys.dll" Delete "$INSTDIR\bin\vtktiff.dll" Delete "$INSTDIR\bin\vtkverdict.dll" Delete "$INSTDIR\bin\vtkViews.dll" Delete "$INSTDIR\bin\vtkViewsPythonD.dll" Delete "$INSTDIR\bin\vtkVolumeRendering.dll" Delete "$INSTDIR\bin\vtkVolumeRenderingPythonD.dll" Delete "$INSTDIR\bin\vtkWidgets.dll" Delete "$INSTDIR\bin\vtkWidgetsPythonD.dll" Delete "$INSTDIR\bin\vtkzlib.dll" Delete "$INSTDIR\bin\zlib1.dll" Delete "$INSTDIR\CellDraw\cdConstants.py" Delete "$INSTDIR\CellDraw\cdControlClusters.py" Delete "$INSTDIR\CellDraw\cdControlImageSequence.py" Delete "$INSTDIR\CellDraw\cdControlInputImage.py" Delete "$INSTDIR\CellDraw\cdControlLayerSelection.py" Delete "$INSTDIR\CellDraw\cdControlPanel.py" Delete "$INSTDIR\CellDraw\cdControlPIFFGenerationMode.py" Delete "$INSTDIR\CellDraw\cdControlRegionOrCell.py" Delete "$INSTDIR\CellDraw\cdControlSceneItemEdit.py" Delete "$INSTDIR\CellDraw\cdControlSceneScaleZoom.py" Delete "$INSTDIR\CellDraw\cdControlTypes.py" Delete "$INSTDIR\CellDraw\cdDiagramScene.py" Delete "$INSTDIR\CellDraw\cdDiagramScene_rc.py" Delete "$INSTDIR\CellDraw\cdImageLayer.py" Delete "$INSTDIR\CellDraw\cdImageSequence.py" Delete "$INSTDIR\CellDraw\cdPixelEditor.py" Delete "$INSTDIR\CellDraw\cdPixelEditor_rc.py" Delete "$INSTDIR\CellDraw\cdPreferences.py" Delete "$INSTDIR\CellDraw\cdSceneAssistant.py" Delete "$INSTDIR\CellDraw\cdSceneBundle.py" Delete "$INSTDIR\CellDraw\cdSceneRasterizer.py" Delete "$INSTDIR\CellDraw\cdTableOfBlockCellSizes.py" Delete "$INSTDIR\CellDraw\cdTableOfTypes.py" Delete "$INSTDIR\CellDraw\cdWaitProgressBar.py" Delete "$INSTDIR\CellDraw\cdWaitProgressBarWithImage.py" Delete "$INSTDIR\CellDraw\cellDrawMain.pyw" Delete "$INSTDIR\CellDraw\ui_cellDrawGUI.py" Delete "$INSTDIR\CellDraw\cc3Dhelpfiles\helpfile_CellDraw.cc3d" Delete "$INSTDIR\CellDraw\cc3Dhelpfiles\readme.text" Delete "$INSTDIR\CellDraw\cc3Dhelpfiles\Simulation\helpfile_CellDraw.py" Delete "$INSTDIR\CellDraw\cc3Dhelpfiles\Simulation\helpfile_steppables_CellDraw.py" Delete "$INSTDIR\CellDraw\icons\background1.png" Delete "$INSTDIR\CellDraw\icons\background2.png" Delete "$INSTDIR\CellDraw\icons\background3.png" Delete "$INSTDIR\CellDraw\icons\background4.png" Delete "$INSTDIR\CellDraw\icons\bold.png" Delete "$INSTDIR\CellDraw\icons\bringtofront.png" Delete "$INSTDIR\CellDraw\icons\CellDraw.icns" Delete "$INSTDIR\CellDraw\icons\CellDraw.png" Delete "$INSTDIR\CellDraw\icons\CellDraw_64x64.ico" Delete "$INSTDIR\CellDraw\icons\CellDraw_64x64.png" Delete "$INSTDIR\CellDraw\icons\CellDraw_64x64_doc.ico" Delete "$INSTDIR\CellDraw\icons\copyRegion.png" Delete "$INSTDIR\CellDraw\icons\cutRegion.png" Delete "$INSTDIR\CellDraw\icons\deleteRegion.png" Delete "$INSTDIR\CellDraw\icons\drawPencil.png" Delete "$INSTDIR\CellDraw\icons\drawPolygon.png" Delete "$INSTDIR\CellDraw\icons\editCluster.png" Delete "$INSTDIR\CellDraw\icons\editClusterBAK.png" Delete "$INSTDIR\CellDraw\icons\floodfill.png" Delete "$INSTDIR\CellDraw\icons\floodfill_old.png" Delete "$INSTDIR\CellDraw\icons\imageLayer.png" Delete "$INSTDIR\CellDraw\icons\imageSequence.png" Delete "$INSTDIR\CellDraw\icons\imageSequenceBW.png" Delete "$INSTDIR\CellDraw\icons\imageSequenceShowContours.png" Delete "$INSTDIR\CellDraw\icons\imageSequenceShowEdge.png" Delete "$INSTDIR\CellDraw\icons\imageSequenceShowSeeds.png" Delete "$INSTDIR\CellDraw\icons\imageSequenceShowVolume.png" Delete "$INSTDIR\CellDraw\icons\italic.png" Delete "$INSTDIR\CellDraw\icons\itemIsCell.png" Delete "$INSTDIR\CellDraw\icons\itemIsCell_192x192.png" Delete "$INSTDIR\CellDraw\icons\itemIsRegion.png" Delete "$INSTDIR\CellDraw\icons\itemIsRegion_192x192.png" Delete "$INSTDIR\CellDraw\icons\linecolor.png" Delete "$INSTDIR\CellDraw\icons\linepointer.png" Delete "$INSTDIR\CellDraw\icons\pasteRegion.png" Delete "$INSTDIR\CellDraw\icons\pickColor.png" Delete "$INSTDIR\CellDraw\icons\PIFFFixedRaster.png" Delete "$INSTDIR\CellDraw\icons\PIFFFixedRaster_192x192.png" Delete "$INSTDIR\CellDraw\icons\PIFFFixedRaster_orig.png" Delete "$INSTDIR\CellDraw\icons\PIFFOneRasterPerRegion.png" Delete "$INSTDIR\CellDraw\icons\PIFFOneRasterPerRegion_orig.png" Delete "$INSTDIR\CellDraw\icons\PIFFPottsRaster.png" Delete "$INSTDIR\CellDraw\icons\PIFFPotts_orig.png" Delete "$INSTDIR\CellDraw\icons\PIFF_fixed_small.png" Delete "$INSTDIR\CellDraw\icons\pointer.png" Delete "$INSTDIR\CellDraw\icons\regiontable.png" Delete "$INSTDIR\CellDraw\icons\resizepointer.png" Delete "$INSTDIR\CellDraw\icons\sendtoback.png" Delete "$INSTDIR\CellDraw\icons\textpointer.png" Delete "$INSTDIR\CellDraw\icons\underline.png" Delete "$INSTDIR\Demos\BionetSolverExamples\DeltaNotchWithMitosis\DeltaNotchWithMitosis.cc3d" Delete "$INSTDIR\Demos\BionetSolverExamples\DeltaNotchWithMitosis\Simulation\DeltaNotchWithMitosis.py" Delete "$INSTDIR\Demos\BionetSolverExamples\DeltaNotchWithMitosis\Simulation\DeltaNotchWithMitosis.xml" Delete "$INSTDIR\Demos\BionetSolverExamples\DeltaNotchWithMitosis\Simulation\DeltaNotchWithMitosisSteppables.py" Delete "$INSTDIR\Demos\BionetSolverExamples\DeltaNotchWithMitosis\Simulation\MinimalDeltaNotch.sbml" Delete "$INSTDIR\Demos\BionetSolverExamples\MultiscaleSimulation\MultiscaleSimulation.cc3d" Delete "$INSTDIR\Demos\BionetSolverExamples\MultiscaleSimulation\Simulation\CadherinCatenin_RamisConde2008.sbml" Delete "$INSTDIR\Demos\BionetSolverExamples\MultiscaleSimulation\Simulation\MinimalDeltaNotch.sbml" Delete "$INSTDIR\Demos\BionetSolverExamples\MultiscaleSimulation\Simulation\MultiscaleSimulation.py" Delete "$INSTDIR\Demos\BionetSolverExamples\MultiscaleSimulation\Simulation\MultiscaleSimulation.xml" Delete "$INSTDIR\Demos\BionetSolverExamples\MultiscaleSimulation\Simulation\MultiscaleSimulationSteppables.py" Delete "$INSTDIR\Demos\BionetSolverExamples\MultiscaleSimulation\Simulation\PK_BloodLiver.sbml" Delete "$INSTDIR\Demos\BionetSolverExamples\MultiscaleSimulation\Simulation\SimpleExample.sbml" Delete "$INSTDIR\Demos\BionetSolverExamples\OscillatingContactEnergies\OscillatingContactEnergies.cc3d" Delete "$INSTDIR\Demos\BionetSolverExamples\OscillatingContactEnergies\Simulation\OscillatingContactEnergies.py" Delete "$INSTDIR\Demos\BionetSolverExamples\OscillatingContactEnergies\Simulation\OscillatingContactEnergies.xml" Delete "$INSTDIR\Demos\BionetSolverExamples\OscillatingContactEnergies\Simulation\OscillatingContactEnergiesSteppables.py" Delete "$INSTDIR\Demos\BionetSolverExamples\OscillatingContactEnergies\Simulation\SimpleExample.sbml" Delete "$INSTDIR\Demos\BionetSolverExamples\OscillatingContactEnergiesFlex\OscillatingContactEnergiesFlex.cc3d" Delete "$INSTDIR\Demos\BionetSolverExamples\OscillatingContactEnergiesFlex\Simulation\OscillatingContactEnergiesFlex.py" Delete "$INSTDIR\Demos\BionetSolverExamples\OscillatingContactEnergiesFlex\Simulation\OscillatingContactEnergiesFlex.xml" Delete "$INSTDIR\Demos\BionetSolverExamples\OscillatingContactEnergiesFlex\Simulation\OscillatingContactEnergiesFlexSteppables.py" Delete "$INSTDIR\Demos\BionetSolverExamples\OscillatingContactEnergiesFlex\Simulation\SimpleExample.sbml" Delete "$INSTDIR\Demos\BionetSolverExamples\TestCellDeath\TestCellDeath.cc3d" Delete "$INSTDIR\Demos\BionetSolverExamples\TestCellDeath\Simulation\MinimalDeltaNotch.sbml" Delete "$INSTDIR\Demos\BionetSolverExamples\TestCellDeath\Simulation\TestCellDeath.py" Delete "$INSTDIR\Demos\BionetSolverExamples\TestCellDeath\Simulation\TestCellDeath.xml" Delete "$INSTDIR\Demos\BionetSolverExamples\TestCellDeath\Simulation\TestCellDeathSteppables.py" Delete "$INSTDIR\Demos\BookChapterDemos_ComputationalMethodsInCellBiology\Angiogenesis\Angiogenesis.cc3d" Delete "$INSTDIR\Demos\BookChapterDemos_ComputationalMethodsInCellBiology\Angiogenesis\Simulation\Angiogenesis.py" Delete "$INSTDIR\Demos\BookChapterDemos_ComputationalMethodsInCellBiology\Angiogenesis\Simulation\AngiogenesisSteppables.py" Delete "$INSTDIR\Demos\BookChapterDemos_ComputationalMethodsInCellBiology\cellsorting\cellsorting.cc3d" Delete "$INSTDIR\Demos\BookChapterDemos_ComputationalMethodsInCellBiology\cellsorting\Simulation\cellsorting.py" Delete "$INSTDIR\Demos\BookChapterDemos_ComputationalMethodsInCellBiology\cellsorting\Simulation\cellsorting.xml" Delete "$INSTDIR\Demos\BookChapterDemos_ComputationalMethodsInCellBiology\cellsorting\Simulation\cellsortingSteppables.py" Delete "$INSTDIR\Demos\BookChapterDemos_ComputationalMethodsInCellBiology\DeltaNotch\DeltaNotch.cc3d" Delete "$INSTDIR\Demos\BookChapterDemos_ComputationalMethodsInCellBiology\DeltaNotch\Simulation\DeltaNotch.py" Delete "$INSTDIR\Demos\BookChapterDemos_ComputationalMethodsInCellBiology\DeltaNotch\Simulation\DeltaNotchSteppables.py" Delete "$INSTDIR\Demos\BookChapterDemos_ComputationalMethodsInCellBiology\DeltaNotch\Simulation\DN_Collier.sbml" Delete "$INSTDIR\Demos\BookChapterDemos_ComputationalMethodsInCellBiology\VascularTumor\VascularTumor.cc3d" Delete "$INSTDIR\Demos\BookChapterDemos_ComputationalMethodsInCellBiology\VascularTumor\Simulation\Glucose_300.dat" Delete "$INSTDIR\Demos\BookChapterDemos_ComputationalMethodsInCellBiology\VascularTumor\Simulation\VascularTumor.py" Delete "$INSTDIR\Demos\BookChapterDemos_ComputationalMethodsInCellBiology\VascularTumor\Simulation\VascularTumor.xml" Delete "$INSTDIR\Demos\BookChapterDemos_ComputationalMethodsInCellBiology\VascularTumor\Simulation\VascularTumorSteppables.py" Delete "$INSTDIR\Demos\CompuCellPythonTutorial\BionetDemo\BionetDemo.cc3d" Delete "$INSTDIR\Demos\CompuCellPythonTutorial\BionetDemo\Simulation\BionetDemo.py" Delete "$INSTDIR\Demos\CompuCellPythonTutorial\BionetDemo\Simulation\BionetDemo.xml" Delete "$INSTDIR\Demos\CompuCellPythonTutorial\BionetDemo\Simulation\BionetDemoSteppables.py" Delete "$INSTDIR\Demos\CompuCellPythonTutorial\BionetDemo\Simulation\oscli.sbml" Delete "$INSTDIR\Demos\CompuCellPythonTutorial\BuildWall3D\BuildWall3D.cc3d" Delete "$INSTDIR\Demos\CompuCellPythonTutorial\BuildWall3D\Simulation\BuildWall3D.py" Delete "$INSTDIR\Demos\CompuCellPythonTutorial\BuildWall3D\Simulation\BuildWall3D.xml" Delete "$INSTDIR\Demos\CompuCellPythonTutorial\BuildWall3D\Simulation\BuildWall3DSteppables.py" Delete "$INSTDIR\Demos\CompuCellPythonTutorial\CellDistance\CellDistance.cc3d" Delete "$INSTDIR\Demos\CompuCellPythonTutorial\CellDistance\Simulation\CellDistance.py" Delete "$INSTDIR\Demos\CompuCellPythonTutorial\CellDistance\Simulation\CellDistance.xml" Delete "$INSTDIR\Demos\CompuCellPythonTutorial\CellDistance\Simulation\CellDistanceSteppables.py" Delete "$INSTDIR\Demos\CompuCellPythonTutorial\CellField\CellField.cc3d" Delete "$INSTDIR\Demos\CompuCellPythonTutorial\CellField\Simulation\CellField.py" Delete "$INSTDIR\Demos\CompuCellPythonTutorial\CellField\Simulation\CellField.xml" Delete "$INSTDIR\Demos\CompuCellPythonTutorial\CellField\Simulation\CellFieldSteppables.py" Delete "$INSTDIR\Demos\CompuCellPythonTutorial\cellInitializer\cellInitilalizer.cc3d" Delete "$INSTDIR\Demos\CompuCellPythonTutorial\cellInitializer\Simulation\cellInitializer.py" Delete "$INSTDIR\Demos\CompuCellPythonTutorial\cellInitializer\Simulation\cellInitializer.xml" Delete "$INSTDIR\Demos\CompuCellPythonTutorial\cellInitializer\Simulation\cellInitializerSteppables.py" Delete "$INSTDIR\Demos\CompuCellPythonTutorial\cellInitializer\Simulation\CellSurfaceCircularFactors.txt" Delete "$INSTDIR\Demos\CompuCellPythonTutorial\CellManipulation\CellManipulation.cc3d" Delete "$INSTDIR\Demos\CompuCellPythonTutorial\CellManipulation\Simulation\CellManipulation.piff" Delete "$INSTDIR\Demos\CompuCellPythonTutorial\CellManipulation\Simulation\CellManipulation.py" Delete "$INSTDIR\Demos\CompuCellPythonTutorial\CellManipulation\Simulation\CellManipulation.xml" Delete "$INSTDIR\Demos\CompuCellPythonTutorial\CellManipulation\Simulation\CellManipulationSteppables.py" Delete "$INSTDIR\Demos\CompuCellPythonTutorial\CellMotility\CellMotility.cc3d" Delete "$INSTDIR\Demos\CompuCellPythonTutorial\CellMotility\Simulation\CellMotility.py" Delete "$INSTDIR\Demos\CompuCellPythonTutorial\CellMotility\Simulation\CellMotility.xml" Delete "$INSTDIR\Demos\CompuCellPythonTutorial\CellMotility\Simulation\CellMotilitySteppables.py" Delete "$INSTDIR\Demos\CompuCellPythonTutorial\cellsort_2D\cellsort_2D.cc3d" Delete "$INSTDIR\Demos\CompuCellPythonTutorial\cellsort_2D\Simulation\cellsort_2D.py" Delete "$INSTDIR\Demos\CompuCellPythonTutorial\cellsort_2D\Simulation\cellsort_2D.xml" Delete "$INSTDIR\Demos\CompuCellPythonTutorial\cellsort_engulfment_2D\cellsort_engulfment_2D.cc3d" Delete "$INSTDIR\Demos\CompuCellPythonTutorial\cellsort_engulfment_2D\Simulation\cellsort_engulfment_2D.py" Delete "$INSTDIR\Demos\CompuCellPythonTutorial\cellsort_engulfment_2D\Simulation\cellsort_engulfment_2D.xml" Delete "$INSTDIR\Demos\CompuCellPythonTutorial\cellsort_engulfment_2D\Simulation\cellsort_engulfment_2D_steppables.py" Delete "$INSTDIR\Demos\CompuCellPythonTutorial\clusterMitosis\clusterMitosis.cc3d" Delete "$INSTDIR\Demos\CompuCellPythonTutorial\clusterMitosis\Simulation\clusterMitosis.piff" Delete "$INSTDIR\Demos\CompuCellPythonTutorial\clusterMitosis\Simulation\clusterMitosis.py" Delete "$INSTDIR\Demos\CompuCellPythonTutorial\clusterMitosis\Simulation\clusterMitosis.xml" Delete "$INSTDIR\Demos\CompuCellPythonTutorial\clusterMitosis\Simulation\clusterMitosisSteppables.py" Delete "$INSTDIR\Demos\CompuCellPythonTutorial\clusterMitosisPeriodicBC\clusterMitosisPeriodicBC.cc3d" Delete "$INSTDIR\Demos\CompuCellPythonTutorial\clusterMitosisPeriodicBC\Simulation\clusterMitosis.py" Delete "$INSTDIR\Demos\CompuCellPythonTutorial\clusterMitosisPeriodicBC\Simulation\clusterMitosis.xml" Delete "$INSTDIR\Demos\CompuCellPythonTutorial\clusterMitosisPeriodicBC\Simulation\clusterMitosisPeriodicBC.piff" Delete "$INSTDIR\Demos\CompuCellPythonTutorial\clusterMitosisPeriodicBC\Simulation\clusterMitosisSteppables.py" Delete "$INSTDIR\Demos\CompuCellPythonTutorial\clusterSurface\clusterSurface.cc3d" Delete "$INSTDIR\Demos\CompuCellPythonTutorial\clusterSurface\Simulation\clusterSurface.piff" Delete "$INSTDIR\Demos\CompuCellPythonTutorial\clusterSurface\Simulation\clusterSurface.py" Delete "$INSTDIR\Demos\CompuCellPythonTutorial\clusterSurface\Simulation\clusterSurface.xml" Delete "$INSTDIR\Demos\CompuCellPythonTutorial\clusterSurface\Simulation\clusterSurfaceSteppables.py" Delete "$INSTDIR\Demos\CompuCellPythonTutorial\diffusion\diffusion.cc3d" Delete "$INSTDIR\Demos\CompuCellPythonTutorial\diffusion\Simulation\diffusion_2D.pulse.txt" Delete "$INSTDIR\Demos\CompuCellPythonTutorial\diffusion\Simulation\diffusion_2D.py" Delete "$INSTDIR\Demos\CompuCellPythonTutorial\diffusion\Simulation\diffusion_2D.xml" Delete "$INSTDIR\Demos\CompuCellPythonTutorial\diffusion\Simulation\diffusion_2D_steppables.py" Delete "$INSTDIR\Demos\CompuCellPythonTutorial\diffusion_extra_player_field\diffusion_extra_player_field.cc3d" Delete "$INSTDIR\Demos\CompuCellPythonTutorial\diffusion_extra_player_field\Simulation\diffusion_2D.pulse.txt" Delete "$INSTDIR\Demos\CompuCellPythonTutorial\diffusion_extra_player_field\Simulation\diffusion_2D.xml" Delete "$INSTDIR\Demos\CompuCellPythonTutorial\diffusion_extra_player_field\Simulation\diffusion_2D_extra_player_field.py" Delete "$INSTDIR\Demos\CompuCellPythonTutorial\diffusion_extra_player_field\Simulation\diffusion_2D_steppables_player.py" Delete "$INSTDIR\Demos\CompuCellPythonTutorial\ExtraAttribites\cellsort_2D_extra_attrib.cc3d" Delete "$INSTDIR\Demos\CompuCellPythonTutorial\ExtraAttribites\Simulation\cellsort_2D.xml" Delete "$INSTDIR\Demos\CompuCellPythonTutorial\ExtraAttribites\Simulation\cellsort_2D_extra_attrib.py" Delete "$INSTDIR\Demos\CompuCellPythonTutorial\ExtraAttribites\Simulation\cellsort_2D_steppables_extra_attrib.py" Delete "$INSTDIR\Demos\CompuCellPythonTutorial\ExtraFields\ExtraFields.cc3d" Delete "$INSTDIR\Demos\CompuCellPythonTutorial\ExtraFields\Simulation\diffusion_2D.pulse.txt" Delete "$INSTDIR\Demos\CompuCellPythonTutorial\ExtraFields\Simulation\ExtraFields.py" Delete "$INSTDIR\Demos\CompuCellPythonTutorial\ExtraFields\Simulation\ExtraFields.xml" Delete "$INSTDIR\Demos\CompuCellPythonTutorial\ExtraFields\Simulation\ExtraFieldsSteppables.py" Delete "$INSTDIR\Demos\CompuCellPythonTutorial\FieldSecretion\FieldSecretion.cc3d" Delete "$INSTDIR\Demos\CompuCellPythonTutorial\FieldSecretion\Simulation\amoebae_2D.piff" Delete "$INSTDIR\Demos\CompuCellPythonTutorial\FieldSecretion\Simulation\FieldSecretion.py" Delete "$INSTDIR\Demos\CompuCellPythonTutorial\FieldSecretion\Simulation\FieldSecretion.xml" Delete "$INSTDIR\Demos\CompuCellPythonTutorial\FieldSecretion\Simulation\FieldSecretionSteppables.py" Delete "$INSTDIR\Demos\CompuCellPythonTutorial\FiPyConcentrationTest\FiPyConcentrationTest.cc3d" Delete "$INSTDIR\Demos\CompuCellPythonTutorial\FiPyConcentrationTest\Simulation\conc.txt" Delete "$INSTDIR\Demos\CompuCellPythonTutorial\FiPyConcentrationTest\Simulation\FiPyConcentrationTest.py" Delete "$INSTDIR\Demos\CompuCellPythonTutorial\FiPyConcentrationTest\Simulation\FiPyConcentrationTest.xml" Delete "$INSTDIR\Demos\CompuCellPythonTutorial\FiPyConcentrationTest\Simulation\FiPyConcentrationTestSteppables.py" Delete "$INSTDIR\Demos\CompuCellPythonTutorial\GraphVTKVis\GraphVTKVis.cc3d" Delete "$INSTDIR\Demos\CompuCellPythonTutorial\GraphVTKVis\Simulation\GraphVTKVis.py" Delete "$INSTDIR\Demos\CompuCellPythonTutorial\GraphVTKVis\Simulation\GraphVTKVis.xml" Delete "$INSTDIR\Demos\CompuCellPythonTutorial\GraphVTKVis\Simulation\GraphVTKVisSteppables.py" Delete "$INSTDIR\Demos\CompuCellPythonTutorial\InfoPrinter\cellsort_2D_info_printer.cc3d" Delete "$INSTDIR\Demos\CompuCellPythonTutorial\InfoPrinter\Simulation\cellsort_2D.xml" Delete "$INSTDIR\Demos\CompuCellPythonTutorial\InfoPrinter\Simulation\cellsort_2D_info_printer.py" Delete "$INSTDIR\Demos\CompuCellPythonTutorial\InfoPrinter\Simulation\cellsort_2D_steppables_info_printer.py" Delete "$INSTDIR\Demos\CompuCellPythonTutorial\NeighborTracker\cellsort_2D_neighbor_tracker.cc3d" Delete "$INSTDIR\Demos\CompuCellPythonTutorial\NeighborTracker\Simulation\cellsort_2D_neighbor_tracker.py" Delete "$INSTDIR\Demos\CompuCellPythonTutorial\NeighborTracker\Simulation\cellsort_2D_neighbor_tracker.xml" Delete "$INSTDIR\Demos\CompuCellPythonTutorial\NeighborTracker\Simulation\cellsort_2D_steppables_neighbor_tracker.py" Delete "$INSTDIR\Demos\CompuCellPythonTutorial\pressureField\pressureField.cc3d" Delete "$INSTDIR\Demos\CompuCellPythonTutorial\pressureField\Simulation\pressureField.py" Delete "$INSTDIR\Demos\CompuCellPythonTutorial\pressureField\Simulation\pressureField.xml" Delete "$INSTDIR\Demos\CompuCellPythonTutorial\pressureField\Simulation\pressureFieldSteppables.py" Delete "$INSTDIR\Demos\CompuCellPythonTutorial\PythonOnlySimulationsExamples\amoebae-2D-new-syntax\amoebae-2D-new-syntax.cc3d" Delete "$INSTDIR\Demos\CompuCellPythonTutorial\PythonOnlySimulationsExamples\amoebae-2D-new-syntax\Simulation\amoebaConcentrationField_2D.txt" Delete "$INSTDIR\Demos\CompuCellPythonTutorial\PythonOnlySimulationsExamples\amoebae-2D-new-syntax\Simulation\amoebae-2D-new-syntax.py" Delete "$INSTDIR\Demos\CompuCellPythonTutorial\PythonOnlySimulationsExamples\amoebae-2D-new-syntax\Simulation\amoebae_2D.piff" Delete "$INSTDIR\Demos\CompuCellPythonTutorial\PythonOnlySimulationsExamples\bacterium_macrophage-player-new-syntax\bacterium_macrophage-player-new-syntax.cc3d" Delete "$INSTDIR\Demos\CompuCellPythonTutorial\PythonOnlySimulationsExamples\bacterium_macrophage-player-new-syntax\Simulation\bacterium_macrophage-player-new-syntax.py" Delete "$INSTDIR\Demos\CompuCellPythonTutorial\PythonOnlySimulationsExamples\bacterium_macrophage-player-new-syntax\Simulation\bacterium_macrophage_2D_wall.piff" Delete "$INSTDIR\Demos\CompuCellPythonTutorial\PythonOnlySimulationsExamples\cellsort-2D-player-new-syntax\cellsort-2D-player-new-syntax.cc3d" Delete "$INSTDIR\Demos\CompuCellPythonTutorial\PythonOnlySimulationsExamples\cellsort-2D-player-new-syntax\Simulation\cellsort-2D-player-new-syntax.py" Delete "$INSTDIR\Demos\CompuCellPythonTutorial\PythonOnlySimulationsExamples\cellsort2DNewPlayer\cellsort2DNewPlayer.cc3d" Delete "$INSTDIR\Demos\CompuCellPythonTutorial\PythonOnlySimulationsExamples\cellsort2DNewPlayer\Simulation\cellsort2DNewPlayer.py" Delete "$INSTDIR\Demos\CompuCellPythonTutorial\PythonOnlySimulationsExamples\diffusion-2D-new-syntax\diffusion-2D-new-syntax.cc3d" Delete "$INSTDIR\Demos\CompuCellPythonTutorial\PythonOnlySimulationsExamples\diffusion-2D-new-syntax\Simulation\diffusion-2D-new-syntax.py" Delete "$INSTDIR\Demos\CompuCellPythonTutorial\PythonOnlySimulationsExamples\diffusion-2D-new-syntax\Simulation\diffusion_2D.pulse.txt" Delete "$INSTDIR\Demos\CompuCellPythonTutorial\PythonOnlySimulationsExamples\elasticitytest-player-new-syntax\elasticitytest-player-new-syntax.cc3d" Delete "$INSTDIR\Demos\CompuCellPythonTutorial\PythonOnlySimulationsExamples\elasticitytest-player-new-syntax\Simulation\elasticitytest-player-new-syntax.py" Delete "$INSTDIR\Demos\CompuCellPythonTutorial\PythonOnlySimulationsExamples\elasticitytest-player-new-syntax\Simulation\elasticitytest.piff" Delete "$INSTDIR\Demos\CompuCellPythonTutorial\PythonOnlySimulationsExamples\elasticitytest-player-new-syntax\Simulation\elasticitytestSteppables.py" Delete "$INSTDIR\Demos\CompuCellPythonTutorial\PythonPlugin\cellsort_2D_with_py_plugin.cc3d" Delete "$INSTDIR\Demos\CompuCellPythonTutorial\PythonPlugin\Simulation\cellsort_2D_plugins_with_py_plugin.py" Delete "$INSTDIR\Demos\CompuCellPythonTutorial\PythonPlugin\Simulation\cellsort_2D_py_plugin.xml" Delete "$INSTDIR\Demos\CompuCellPythonTutorial\PythonPlugin\Simulation\cellsort_2D_with_py_plugin.py" Delete "$INSTDIR\Demos\CompuCellPythonTutorial\scientificHistBarPlots\scientificHistBarPlots.cc3d" Delete "$INSTDIR\Demos\CompuCellPythonTutorial\scientificHistBarPlots\Simulation\foaminit2D.piff" Delete "$INSTDIR\Demos\CompuCellPythonTutorial\scientificHistBarPlots\Simulation\Foam_Coarsening.xml" Delete "$INSTDIR\Demos\CompuCellPythonTutorial\scientificHistBarPlots\Simulation\scientificHistBarPlots.py" Delete "$INSTDIR\Demos\CompuCellPythonTutorial\scientificHistBarPlots\Simulation\scientificHistBarPlotsSteppables.py" Delete "$INSTDIR\Demos\CompuCellPythonTutorial\scientificPlots\scientificPlots.cc3d" Delete "$INSTDIR\Demos\CompuCellPythonTutorial\scientificPlots\Simulation\cellsort_2D.xml" Delete "$INSTDIR\Demos\CompuCellPythonTutorial\scientificPlots\Simulation\scientificPlots.py" Delete "$INSTDIR\Demos\CompuCellPythonTutorial\scientificPlots\Simulation\scientificPlotsSteppables.py" Delete "$INSTDIR\Demos\CompuCellPythonTutorial\scientificPlotsSimple\scientificPlots.cc3d" Delete "$INSTDIR\Demos\CompuCellPythonTutorial\scientificPlotsSimple\Simulation\cellsort_2D.xml" Delete "$INSTDIR\Demos\CompuCellPythonTutorial\scientificPlotsSimple\Simulation\scientificPlots.py" Delete "$INSTDIR\Demos\CompuCellPythonTutorial\scientificPlotsSimple\Simulation\scientificPlotsSteppables.py" Delete "$INSTDIR\Demos\CompuCellPythonTutorial\steppableBasedMitosis\steppableBasedMitosis.cc3d" Delete "$INSTDIR\Demos\CompuCellPythonTutorial\steppableBasedMitosis\Simulation\steppableBasedMitosis.piff" Delete "$INSTDIR\Demos\CompuCellPythonTutorial\steppableBasedMitosis\Simulation\steppableBasedMitosis.py" Delete "$INSTDIR\Demos\CompuCellPythonTutorial\steppableBasedMitosis\Simulation\steppableBasedMitosis.xml" Delete "$INSTDIR\Demos\CompuCellPythonTutorial\steppableBasedMitosis\Simulation\steppableBasedMitosisSteppables.py" Delete "$INSTDIR\Demos\CompuCellPythonTutorial\steppableBasedMitosisPeriodicBC\steppableBasedMitosisPeriodicBC.cc3d" Delete "$INSTDIR\Demos\CompuCellPythonTutorial\steppableBasedMitosisPeriodicBC\Simulation\steppableBasedMitosis.piff" Delete "$INSTDIR\Demos\CompuCellPythonTutorial\steppableBasedMitosisPeriodicBC\Simulation\steppableBasedMitosis.py" Delete "$INSTDIR\Demos\CompuCellPythonTutorial\steppableBasedMitosisPeriodicBC\Simulation\steppableBasedMitosis.xml" Delete "$INSTDIR\Demos\CompuCellPythonTutorial\steppableBasedMitosisPeriodicBC\Simulation\steppableBasedMitosisSteppables.py" Delete "$INSTDIR\Demos\CompuCellPythonTutorial\SteppableCommunication\SteppableCommunication.cc3d" Delete "$INSTDIR\Demos\CompuCellPythonTutorial\SteppableCommunication\Simulation\SteppableCommunication.py" Delete "$INSTDIR\Demos\CompuCellPythonTutorial\SteppableCommunication\Simulation\SteppableCommunication.xml" Delete "$INSTDIR\Demos\CompuCellPythonTutorial\SteppableCommunication\Simulation\SteppableCommunicationSteppables.py" Delete "$INSTDIR\Demos\CompuCellPythonTutorial\TemplateDir\TemplateDir.cc3d" Delete "$INSTDIR\Demos\CompuCellPythonTutorial\TemplateDir\Simulation\diffusion_2D.pulse.txt" Delete "$INSTDIR\Demos\CompuCellPythonTutorial\TemplateDir\Simulation\TemplatePluginExample.xml" Delete "$INSTDIR\Demos\CompuCellPythonTutorial\TemplateDir\Simulation\templateSteppabletest.py" Delete "$INSTDIR\Demos\CompuCellPythonTutorial\vectorPlot\vectorPlot.cc3d" Delete "$INSTDIR\Demos\CompuCellPythonTutorial\vectorPlot\Simulation\bacterium_macrophage_2D_wall.piff" Delete "$INSTDIR\Demos\CompuCellPythonTutorial\vectorPlot\Simulation\vectorPlot.py" Delete "$INSTDIR\Demos\CompuCellPythonTutorial\vectorPlot\Simulation\vectorPlot.xml" Delete "$INSTDIR\Demos\CompuCellPythonTutorial\vectorPlot\Simulation\vectorPlotSteppables.py" Delete "$INSTDIR\Demos\Models\amoebae\amoebae_2D\amoebae_2D.cc3d" Delete "$INSTDIR\Demos\Models\amoebae\amoebae_2D\Simulation\amoebaConcentrationField_2D.txt" Delete "$INSTDIR\Demos\Models\amoebae\amoebae_2D\Simulation\amoebae_2D.piff" Delete "$INSTDIR\Demos\Models\amoebae\amoebae_2D\Simulation\amoebae_2D.xml" Delete "$INSTDIR\Demos\Models\amoebae\amoebae_2D_PlayerSettings\amoebae_2D_PlayerSettings.cc3d" Delete "$INSTDIR\Demos\Models\amoebae\amoebae_2D_PlayerSettings\Simulation\amoebaConcentrationField_2D.txt" Delete "$INSTDIR\Demos\Models\amoebae\amoebae_2D_PlayerSettings\Simulation\amoebae_2D.piff" Delete "$INSTDIR\Demos\Models\amoebae\amoebae_2D_PlayerSettings\Simulation\amoebae_2D_PlayerSettings.xml" Delete "$INSTDIR\Demos\Models\amoebae\amoebae_2D_secretion\amoebae_2D_secretion.cc3d" Delete "$INSTDIR\Demos\Models\amoebae\amoebae_2D_secretion\Simulation\amoebaConcentrationField_2D.txt" Delete "$INSTDIR\Demos\Models\amoebae\amoebae_2D_secretion\Simulation\amoebae_2D.piff" Delete "$INSTDIR\Demos\Models\amoebae\amoebae_2D_secretion\Simulation\amoebae_2D_secretion.xml" Delete "$INSTDIR\Demos\Models\bacterium_macrophage\bacterium_macrophage.cc3d" Delete "$INSTDIR\Demos\Models\bacterium_macrophage\Simulation\bacterium_macrophage_2D.piff" Delete "$INSTDIR\Demos\Models\bacterium_macrophage\Simulation\bacterium_macrophage_2D.xml" Delete "$INSTDIR\Demos\Models\bacterium_macrophage\Simulation\bacterium_macrophage_2D_wall.piff" Delete "$INSTDIR\Demos\Models\bacterium_macrophage_2D_steering\bacterium_macrophage_2D_steering.cc3d" Delete "$INSTDIR\Demos\Models\bacterium_macrophage_2D_steering\Simulation\bacterium_macrophage_2D_steering.py" Delete "$INSTDIR\Demos\Models\bacterium_macrophage_2D_steering\Simulation\bacterium_macrophage_2D_steering.xml" Delete "$INSTDIR\Demos\Models\bacterium_macrophage_2D_steering\Simulation\bacterium_macrophage_2D_steering_steppables.py" Delete "$INSTDIR\Demos\Models\bacterium_macrophage_2D_steering\Simulation\bacterium_macrophage_2D_wall.piff" Delete "$INSTDIR\Demos\Models\cellsort\cellsort_2D\cellsort_2D.cc3d" Delete "$INSTDIR\Demos\Models\cellsort\cellsort_2D\Simulation\cellsort_2D.xml" Delete "$INSTDIR\Demos\Models\cellsort\cellsort_2D_growing_cells_mitosis_using_steppable\cellsort_2D_growing_cells_mitosis_using_steppable.cc3d" Delete "$INSTDIR\Demos\Models\cellsort\cellsort_2D_growing_cells_mitosis_using_steppable\Simulation\cellsort_2D_field.py" Delete "$INSTDIR\Demos\Models\cellsort\cellsort_2D_growing_cells_mitosis_using_steppable\Simulation\cellsort_2D_field.xml" Delete "$INSTDIR\Demos\Models\cellsort\cellsort_2D_growing_cells_mitosis_using_steppable\Simulation\cellsort_2D_field_modules.py" Delete "$INSTDIR\Demos\Models\cellsort\cellsort_3D\cellsort_3D.cc3d" Delete "$INSTDIR\Demos\Models\cellsort\cellsort_3D\Simulation\cellsort_3D.xml" Delete "$INSTDIR\Demos\Models\dicty_40x40\dicty_40x40.cc3d" Delete "$INSTDIR\Demos\Models\dicty_40x40\Simulation\dicty_try_40x40.xml" Delete "$INSTDIR\Demos\Models\FitzHughNagumo\FitzHughNagumo.cc3d" Delete "$INSTDIR\Demos\Models\FitzHughNagumo\Simulation\FitzHughNagumo.xml" Delete "$INSTDIR\Demos\Models\FitzHughNagumo_OpenCL\FitzHughNagumo_OpenCL.cc3d" Delete "$INSTDIR\Demos\Models\FitzHughNagumo_OpenCL\Simulation\FitzHughNagumo.xml" Delete "$INSTDIR\Demos\Models\wetFoam\wetFoam.cc3d" Delete "$INSTDIR\Demos\Models\wetFoam\Simulation\wetFoam.py" Delete "$INSTDIR\Demos\Models\wetFoam\Simulation\wetFoam.xml" Delete "$INSTDIR\Demos\Models\wetFoam\Simulation\wetFoamSteppables.py" Delete "$INSTDIR\Demos\Models\wetFoamDrainage\wetFoamDrainage.cc3d" Delete "$INSTDIR\Demos\Models\wetFoamDrainage\Simulation\wetFoamDrainage.py" Delete "$INSTDIR\Demos\Models\wetFoamDrainage\Simulation\wetFoamDrainage.xml" Delete "$INSTDIR\Demos\Models\wetFoamDrainage\Simulation\wetFoamDrainageSteppables.py" Delete "$INSTDIR\Demos\ParameterScan\CellSorting\CellSorting.cc3d" Delete "$INSTDIR\Demos\ParameterScan\CellSorting\Simulation\CellSorting.py" Delete "$INSTDIR\Demos\ParameterScan\CellSorting\Simulation\CellSorting.xml" Delete "$INSTDIR\Demos\ParameterScan\CellSorting\Simulation\CellSortingSteppables.py" Delete "$INSTDIR\Demos\ParameterScan\CellSorting\Simulation\ParameterScanSpecs.xml" Delete "$INSTDIR\Demos\PluginDemos\AdhesionFlexPython\AdhesionFlexPython.cc3d" Delete "$INSTDIR\Demos\PluginDemos\AdhesionFlexPython\Simulation\AdhesionFlex.py" Delete "$INSTDIR\Demos\PluginDemos\AdhesionFlexPython\Simulation\AdhesionFlexPython.xml" Delete "$INSTDIR\Demos\PluginDemos\AdhesionFlexPython\Simulation\AdhesionFlexSteppables.py" Delete "$INSTDIR\Demos\PluginDemos\AdhesionFlexXML\AdhesionFlexXML.cc3d" Delete "$INSTDIR\Demos\PluginDemos\AdhesionFlexXML\Simulation\AdhesionFlex.xml" Delete "$INSTDIR\Demos\PluginDemos\BoundaryMonitorExample\BoundaryMonitorExample.cc3d" Delete "$INSTDIR\Demos\PluginDemos\BoundaryMonitorExample\Simulation\bacterium_macrophage_2D_wall.piff" Delete "$INSTDIR\Demos\PluginDemos\BoundaryMonitorExample\Simulation\BoundaryMonitorExample.py" Delete "$INSTDIR\Demos\PluginDemos\BoundaryMonitorExample\Simulation\BoundaryMonitorExample.xml" Delete "$INSTDIR\Demos\PluginDemos\BoundaryMonitorExample\Simulation\BoundaryMonitorExampleSteppables.py" Delete "$INSTDIR\Demos\PluginDemos\BoundaryPixelTrackerExample\BoundaryPixelTrackerExample.cc3d" Delete "$INSTDIR\Demos\PluginDemos\BoundaryPixelTrackerExample\Simulation\bacterium_macrophage_2D_wall.piff" Delete "$INSTDIR\Demos\PluginDemos\BoundaryPixelTrackerExample\Simulation\BoundaryPixelTrackerExample.py" Delete "$INSTDIR\Demos\PluginDemos\BoundaryPixelTrackerExample\Simulation\BoundaryPixelTrackerExample.xml" Delete "$INSTDIR\Demos\PluginDemos\BoundaryPixelTrackerExample\Simulation\BoundaryPixelTrackerExampleSteppables.py" Delete "$INSTDIR\Demos\PluginDemos\chemotaxis_by_cell_id\chemotaxis_by_cell_id.cc3d" Delete "$INSTDIR\Demos\PluginDemos\chemotaxis_by_cell_id\Simulation\chemotaxis_by_cell_id.piff" Delete "$INSTDIR\Demos\PluginDemos\chemotaxis_by_cell_id\Simulation\chemotaxis_by_cell_id.py" Delete "$INSTDIR\Demos\PluginDemos\chemotaxis_by_cell_id\Simulation\chemotaxis_by_cell_id.xml" Delete "$INSTDIR\Demos\PluginDemos\chemotaxis_by_cell_id\Simulation\chemotaxis_by_cell_id_steppables.py" Delete "$INSTDIR\Demos\PluginDemos\CompartmentExample\CompartmentExample\CompartmentExample.cc3d" Delete "$INSTDIR\Demos\PluginDemos\CompartmentExample\CompartmentExample\Simulation\3D_LINE_BASE.piff" Delete "$INSTDIR\Demos\PluginDemos\CompartmentExample\CompartmentExample\Simulation\CompartmentExample.xml" Delete "$INSTDIR\Demos\PluginDemos\CompartmentExample\CompartmentExampleNewStyle\CompartmentExampleNewStyle.cc3d" Delete "$INSTDIR\Demos\PluginDemos\CompartmentExample\CompartmentExampleNewStyle\Simulation\3D_LINE_BASE.piff" Delete "$INSTDIR\Demos\PluginDemos\CompartmentExample\CompartmentExampleNewStyle\Simulation\CompartmentExampleNewStyle.xml" Delete "$INSTDIR\Demos\PluginDemos\ConnectivityGlobalTest\ConnectivityGlobalTest\ConnectivityGlobalTest.cc3d" Delete "$INSTDIR\Demos\PluginDemos\ConnectivityGlobalTest\ConnectivityGlobalTest\Simulation\ConnectivityGlobalTest.piff" Delete "$INSTDIR\Demos\PluginDemos\ConnectivityGlobalTest\ConnectivityGlobalTest\Simulation\ConnectivityGlobalTest.xml" Delete "$INSTDIR\Demos\PluginDemos\ConnectivityGlobalTest\ConnectivityGlobalTestFragmentedCells\ConnectivityGlobalTest.cc3d" Delete "$INSTDIR\Demos\PluginDemos\ConnectivityGlobalTest\ConnectivityGlobalTestFragmentedCells\Simulation\ConnectivityGlobalTestFragmentedCells.piff" Delete "$INSTDIR\Demos\PluginDemos\ConnectivityGlobalTest\ConnectivityGlobalTestFragmentedCells\Simulation\ConnectivityGlobalTestFragmentedCells.xml" Delete "$INSTDIR\Demos\PluginDemos\ConnectivityGlobalTestLocalSettings\ConnectivityGlobalTestLocalSettings.cc3d" Delete "$INSTDIR\Demos\PluginDemos\ConnectivityGlobalTestLocalSettings\Simulation\ConnectivityElongationSteppable.py" Delete "$INSTDIR\Demos\PluginDemos\ConnectivityGlobalTestLocalSettings\Simulation\ConnectivityTest.piff" Delete "$INSTDIR\Demos\PluginDemos\ConnectivityGlobalTestLocalSettings\Simulation\ConnectivityTest.py" Delete "$INSTDIR\Demos\PluginDemos\ConnectivityGlobalTestLocalSettings\Simulation\ConnectivityTest.xml" Delete "$INSTDIR\Demos\PluginDemos\connectivityTest\connectivityTest.cc3d" Delete "$INSTDIR\Demos\PluginDemos\connectivityTest\Simulation\connectivityTest.piff" Delete "$INSTDIR\Demos\PluginDemos\connectivityTest\Simulation\connectivityTest.xml" Delete "$INSTDIR\Demos\PluginDemos\ContactLocalProduct\ContactLocalProductExample\ContactLocalProductExample.cc3d" Delete "$INSTDIR\Demos\PluginDemos\ContactLocalProduct\ContactLocalProductExample\Simulation\ContactLocalProductExample.py" Delete "$INSTDIR\Demos\PluginDemos\ContactLocalProduct\ContactLocalProductExample\Simulation\ContactLocalProductExample.xml" Delete "$INSTDIR\Demos\PluginDemos\ContactLocalProduct\ContactLocalProductExample\Simulation\ContactLocalProductExampleModules.py" Delete "$INSTDIR\Demos\PluginDemos\ContactLocalProduct\ContactLocalProductExampleCustomFunction\ContactLocalProductExampleCustomFunction.cc3d" Delete "$INSTDIR\Demos\PluginDemos\ContactLocalProduct\ContactLocalProductExampleCustomFunction\Simulation\ContactLocalProductExampleCustomFunction.py" Delete "$INSTDIR\Demos\PluginDemos\ContactLocalProduct\ContactLocalProductExampleCustomFunction\Simulation\ContactLocalProductExampleCustomFunction.xml" Delete "$INSTDIR\Demos\PluginDemos\ContactLocalProduct\ContactLocalProductExampleCustomFunction\Simulation\ContactLocalProductExampleModules.py" Delete "$INSTDIR\Demos\PluginDemos\ContactLocalProduct\ContactLocalProductVisExample\ContactLocalProductVisExample.cc3d" Delete "$INSTDIR\Demos\PluginDemos\ContactLocalProduct\ContactLocalProductVisExample\Simulation\ContactLocalProductExampleModules.py" Delete "$INSTDIR\Demos\PluginDemos\ContactLocalProduct\ContactLocalProductVisExample\Simulation\ContactLocalProductVisExample.py" Delete "$INSTDIR\Demos\PluginDemos\ContactLocalProduct\ContactLocalProductVisExample\Simulation\ContactLocalProductVisExample.xml" Delete "$INSTDIR\Demos\PluginDemos\ContactMultiCad\ContactMultiCad.cc3d" Delete "$INSTDIR\Demos\PluginDemos\ContactMultiCad\Simulation\ContactMultiCad.py" Delete "$INSTDIR\Demos\PluginDemos\ContactMultiCad\Simulation\ContactMultiCad.xml" Delete "$INSTDIR\Demos\PluginDemos\ContactMultiCad\Simulation\ContactMultiCadSteppables.py" Delete "$INSTDIR\Demos\PluginDemos\ConvergentExtension\ConvergentExtension.cc3d" Delete "$INSTDIR\Demos\PluginDemos\ConvergentExtension\Simulation\ConvergentExtension.xml" Delete "$INSTDIR\Demos\PluginDemos\Curvature\Curvature.cc3d" Delete "$INSTDIR\Demos\PluginDemos\Curvature\Simulation\curvature.piff" Delete "$INSTDIR\Demos\PluginDemos\Curvature\Simulation\Curvature.xml" Delete "$INSTDIR\Demos\PluginDemos\CutomCellConstraints\cellsort_2D_custom_constraints.cc3d" Delete "$INSTDIR\Demos\PluginDemos\CutomCellConstraints\Simulation\cellsort_2D_custom_constraints.xml" Delete "$INSTDIR\Demos\PluginDemos\elasticityTest\elasticityTest\elasticityTest.cc3d" Delete "$INSTDIR\Demos\PluginDemos\elasticityTest\elasticityTest\Simulation\elasticityTest.piff" Delete "$INSTDIR\Demos\PluginDemos\elasticityTest\elasticityTest\Simulation\elasticityTest.xml" Delete "$INSTDIR\Demos\PluginDemos\elasticityTest\elasticityTestFlexExternalPotential\elasticityTestFlexExternalPotential.cc3d" Delete "$INSTDIR\Demos\PluginDemos\elasticityTest\elasticityTestFlexExternalPotential\Simulation\elasticityTest.piff" Delete "$INSTDIR\Demos\PluginDemos\elasticityTest\elasticityTestFlexExternalPotential\Simulation\elasticityTestFlexExternalPotential.xml" Delete "$INSTDIR\Demos\PluginDemos\elasticityTest\elasticityTestFlexExternalPotentialBoundaryWalker\elasticityTestFlexExternalPotentialBoundaryWalker.cc3d" Delete "$INSTDIR\Demos\PluginDemos\elasticityTest\elasticityTestFlexExternalPotentialBoundaryWalker\Simulation\elasticityTest.piff" Delete "$INSTDIR\Demos\PluginDemos\elasticityTest\elasticityTestFlexExternalPotentialBoundaryWalker\Simulation\elasticityTestFlexExternalPotentialBoundaryWalker.xml" Delete "$INSTDIR\Demos\PluginDemos\elasticityTest_steering\elasticityTest_steering.cc3d" Delete "$INSTDIR\Demos\PluginDemos\elasticityTest_steering\Simulation\elasticityTest_steering.piff" Delete "$INSTDIR\Demos\PluginDemos\elasticityTest_steering\Simulation\elasticityTest_steering.py" Delete "$INSTDIR\Demos\PluginDemos\elasticityTest_steering\Simulation\elasticityTest_steering.xml" Delete "$INSTDIR\Demos\PluginDemos\elasticityTest_steering\Simulation\elasticityTest_steering_steppables.py" Delete "$INSTDIR\Demos\PluginDemos\elongationFlexTest\elongationFlexTest.cc3d" Delete "$INSTDIR\Demos\PluginDemos\elongationFlexTest\Simulation\elongationFlexSteppables.py" Delete "$INSTDIR\Demos\PluginDemos\elongationFlexTest\Simulation\elongationFlexTest.piff" Delete "$INSTDIR\Demos\PluginDemos\elongationFlexTest\Simulation\elongationFlexTest.py" Delete "$INSTDIR\Demos\PluginDemos\elongationFlexTest\Simulation\elongationFlexTest.xml" Delete "$INSTDIR\Demos\PluginDemos\elongationTest\elongationTest\elongationTest.cc3d" Delete "$INSTDIR\Demos\PluginDemos\elongationTest\elongationTest\Simulation\elongationTest.piff" Delete "$INSTDIR\Demos\PluginDemos\elongationTest\elongationTest\Simulation\elongationTest.xml" Delete "$INSTDIR\Demos\PluginDemos\elongationTest\elongationTest3D\elongationTest3D.cc3d" Delete "$INSTDIR\Demos\PluginDemos\elongationTest\elongationTest3D\Simulation\elongationTest3D.piff" Delete "$INSTDIR\Demos\PluginDemos\elongationTest\elongationTest3D\Simulation\elongationTest3D.xml" Delete "$INSTDIR\Demos\PluginDemos\elongationTest_steering\elongationTest_steering.cc3d" Delete "$INSTDIR\Demos\PluginDemos\elongationTest_steering\Simulation\elongationTest_steering.piff" Delete "$INSTDIR\Demos\PluginDemos\elongationTest_steering\Simulation\elongationTest_steering.py" Delete "$INSTDIR\Demos\PluginDemos\elongationTest_steering\Simulation\elongationTest_steering.xml" Delete "$INSTDIR\Demos\PluginDemos\elongationTest_steering\Simulation\elongationTest_steering_steppables.py" Delete "$INSTDIR\Demos\PluginDemos\FlexCellConstraints\cellsort_2D_flex.cc3d" Delete "$INSTDIR\Demos\PluginDemos\FlexCellConstraints\Simulation\cellsort_2D_flex.xml" Delete "$INSTDIR\Demos\PluginDemos\FocalPointPlasticity\FocalPointPlasticity\FocalPointPlasticity.cc3d" Delete "$INSTDIR\Demos\PluginDemos\FocalPointPlasticity\FocalPointPlasticity\Simulation\FocalPointInit.piff" Delete "$INSTDIR\Demos\PluginDemos\FocalPointPlasticity\FocalPointPlasticity\Simulation\FocalPointPlasticity.xml" Delete "$INSTDIR\Demos\PluginDemos\FocalPointPlasticity\FocalPointPlasticityCompartments\FocalPointPlasticityCompartments.cc3d" Delete "$INSTDIR\Demos\PluginDemos\FocalPointPlasticity\FocalPointPlasticityCompartments\Simulation\FocalPointPlasticityCompartments.xml" Delete "$INSTDIR\Demos\PluginDemos\FocalPointPlasticity\FocalPointPlasticityCompartments\Simulation\plasticityCompartments.piff" Delete "$INSTDIR\Demos\PluginDemos\FocalPointPlasticityCompartmentsPython\FocalPointPlasticityCompartmentsPython.cc3d" Delete "$INSTDIR\Demos\PluginDemos\FocalPointPlasticityCompartmentsPython\Simulation\FocalPointPlasticityCompartments.py" Delete "$INSTDIR\Demos\PluginDemos\FocalPointPlasticityCompartmentsPython\Simulation\FocalPointPlasticityCompartments.xml" Delete "$INSTDIR\Demos\PluginDemos\FocalPointPlasticityCompartmentsPython\Simulation\FocalPointPlasticityCompartmentsSteppables.py" Delete "$INSTDIR\Demos\PluginDemos\FocalPointPlasticityCompartmentsPython\Simulation\plasticityCompartments.piff" Delete "$INSTDIR\Demos\PluginDemos\FocalPointPlasticityCustom\FocalPointPlasticityCustom.cc3d" Delete "$INSTDIR\Demos\PluginDemos\FocalPointPlasticityCustom\Simulation\FocalPointPlasticityCustom.piff" Delete "$INSTDIR\Demos\PluginDemos\FocalPointPlasticityCustom\Simulation\FocalPointPlasticityCustom.xml" Delete "$INSTDIR\Demos\PluginDemos\FocalPointPlasticityPython\FocalPointPlasticityPython.cc3d" Delete "$INSTDIR\Demos\PluginDemos\FocalPointPlasticityPython\Simulation\FocalPointInit.piff" Delete "$INSTDIR\Demos\PluginDemos\FocalPointPlasticityPython\Simulation\FocalPointPlasticity.py" Delete "$INSTDIR\Demos\PluginDemos\FocalPointPlasticityPython\Simulation\FocalPointPlasticity.xml" Delete "$INSTDIR\Demos\PluginDemos\FocalPointPlasticityPython\Simulation\FocalPointPlasticitySteppables.py" Delete "$INSTDIR\Demos\PluginDemos\FPPDemo\FPPDemo.cc3d" Delete "$INSTDIR\Demos\PluginDemos\FPPDemo\Simulation\FocalPointInit.piff" Delete "$INSTDIR\Demos\PluginDemos\FPPDemo\Simulation\FocalPointPlasticity.py" Delete "$INSTDIR\Demos\PluginDemos\FPPDemo\Simulation\FocalPointPlasticity.xml" Delete "$INSTDIR\Demos\PluginDemos\FPPDemo\Simulation\FocalPointPlasticitySteppables.py" Delete "$INSTDIR\Demos\PluginDemos\GlobalBoundaryPixelTracker\cellsort_2D_boundary.cc3d" Delete "$INSTDIR\Demos\PluginDemos\GlobalBoundaryPixelTracker\Simulation\cellsort_2D_boundary.xml" Delete "$INSTDIR\Demos\PluginDemos\MomentOfInertia\MomentOfInertia\MomentOfInertia.cc3d" Delete "$INSTDIR\Demos\PluginDemos\MomentOfInertia\MomentOfInertia\Simulation\MomentOfInertia.py" Delete "$INSTDIR\Demos\PluginDemos\MomentOfInertia\MomentOfInertia\Simulation\MomentOfInertia.xml" Delete "$INSTDIR\Demos\PluginDemos\MomentOfInertia\MomentOfInertia\Simulation\MomentOfInertiaSteppables.py" Delete "$INSTDIR\Demos\PluginDemos\MomentOfInertia\MomentOfInertia3D\MomentOfInertia3D.cc3d" Delete "$INSTDIR\Demos\PluginDemos\MomentOfInertia\MomentOfInertia3D\Simulation\MomentOfInertia3D.py" Delete "$INSTDIR\Demos\PluginDemos\MomentOfInertia\MomentOfInertia3D\Simulation\MomentOfInertia3D.xml" Delete "$INSTDIR\Demos\PluginDemos\MomentOfInertia\MomentOfInertia3D\Simulation\MomentOfInertia3DSteppables.py" Delete "$INSTDIR\Demos\PluginDemos\oriented-cellsort\oriented-cellsort.cc3d" Delete "$INSTDIR\Demos\PluginDemos\oriented-cellsort\Simulation\oriented-cellsort.xml" Delete "$INSTDIR\Demos\PluginDemos\PixelTrackerExample\PixelTrackerExample.cc3d" Delete "$INSTDIR\Demos\PluginDemos\PixelTrackerExample\Simulation\bacterium_macrophage_2D_wall.piff" Delete "$INSTDIR\Demos\PluginDemos\PixelTrackerExample\Simulation\PixelTrackerExample.py" Delete "$INSTDIR\Demos\PluginDemos\PixelTrackerExample\Simulation\PixelTrackerExample.xml" Delete "$INSTDIR\Demos\PluginDemos\PixelTrackerExample\Simulation\PixelTrackerExampleSteppables.py" Delete "$INSTDIR\Demos\PluginDemos\PolarizationOrientationExample\PolarizationOrientationExample.cc3d" Delete "$INSTDIR\Demos\PluginDemos\PolarizationOrientationExample\Simulation\PolarizationOrientationExample.py" Delete "$INSTDIR\Demos\PluginDemos\PolarizationOrientationExample\Simulation\PolarizationOrientationExample.xml" Delete "$INSTDIR\Demos\PluginDemos\PolarizationOrientationExample\Simulation\PolarizationOrientationExampleSteppables.py" Delete "$INSTDIR\Demos\PluginDemos\RandomBlobInitializer\randomBlobInitializer.cc3d" Delete "$INSTDIR\Demos\PluginDemos\RandomBlobInitializer\Simulation\randomBlobInitializer.xml" Delete "$INSTDIR\Demos\PluginDemos\RandomFieldInitializer\randomFieldInitializer.cc3d" Delete "$INSTDIR\Demos\PluginDemos\RandomFieldInitializer\Simulation\randomFieldInitializer.xml" Delete "$INSTDIR\Demos\PluginDemos\viscosity\viscosityDemo.cc3d" Delete "$INSTDIR\Demos\PluginDemos\viscosity\Simulation\viscosityDemo.xml" Delete "$INSTDIR\Demos\SBMLSolverExamples\DeltaNotch\DeltaNotch.cc3d" Delete "$INSTDIR\Demos\SBMLSolverExamples\DeltaNotch\Simulation\DeltaNotch.py" Delete "$INSTDIR\Demos\SBMLSolverExamples\DeltaNotch\Simulation\DeltaNotchSteppables.py" Delete "$INSTDIR\Demos\SBMLSolverExamples\DeltaNotch\Simulation\DN_Collier.sbml" Delete "$INSTDIR\Demos\SBMLSolverExamples\SBMLSolver\SBMLSolver.cc3d" Delete "$INSTDIR\Demos\SBMLSolverExamples\SBMLSolver\Simulation\SBMLSolver.py" Delete "$INSTDIR\Demos\SBMLSolverExamples\SBMLSolver\Simulation\SBMLSolver.xml" Delete "$INSTDIR\Demos\SBMLSolverExamples\SBMLSolver\Simulation\SBMLSolverSteppables.py" Delete "$INSTDIR\Demos\SBMLSolverExamples\SBMLSolver\Simulation\test_1.xml" Delete "$INSTDIR\Demos\SBMLSolverExamples\SBMLSolverOscilatorDemo\SBMLSolverOscilatorDemo.cc3d" Delete "$INSTDIR\Demos\SBMLSolverExamples\SBMLSolverOscilatorDemo\Simulation\oscli.sbml" Delete "$INSTDIR\Demos\SBMLSolverExamples\SBMLSolverOscilatorDemo\Simulation\SBMLSolverOscilatorDemo.py" Delete "$INSTDIR\Demos\SBMLSolverExamples\SBMLSolverOscilatorDemo\Simulation\SBMLSolverOscilatorDemo.xml" Delete "$INSTDIR\Demos\SBMLSolverExamples\SBMLSolverOscilatorDemo\Simulation\SBMLSolverOscilatorDemoSteppables.py" Delete "$INSTDIR\Demos\SimulationSettings\FluctuationAmplitude\cellsort_2D_FluctuationAmplitude.cc3d" Delete "$INSTDIR\Demos\SimulationSettings\FluctuationAmplitude\Simulation\cellsort_2D_FluctuationAmplitude.xml" Delete "$INSTDIR\Demos\SimulationSettings\FluctuationAmplitudePython\FluctuationAmplitude.cc3d" Delete "$INSTDIR\Demos\SimulationSettings\FluctuationAmplitudePython\Simulation\FluctuationAmplitude.py" Delete "$INSTDIR\Demos\SimulationSettings\FluctuationAmplitudePython\Simulation\FluctuationAmplitude.xml" Delete "$INSTDIR\Demos\SimulationSettings\FluctuationAmplitudePython\Simulation\FluctuationAmplitudeSteppables.py" Delete "$INSTDIR\Demos\SimulationSettings\HexLattice\cellsort_2D_hex.cc3d" Delete "$INSTDIR\Demos\SimulationSettings\HexLattice\Simulation\cellsort_2D_hex.xml" Delete "$INSTDIR\Demos\SimulationSettings\ParallelCC3DExamples\cellsort_2D_open_mp\cellsort_2D_open_mp.cc3d" Delete "$INSTDIR\Demos\SimulationSettings\ParallelCC3DExamples\cellsort_2D_open_mp\Simulation\cellsort_2D_open_mp.xml" Delete "$INSTDIR\Demos\SimulationSettings\ParallelCC3DExamples\cellsort_3D_open_mp\cellsort_3D_open_mp.cc3d" Delete "$INSTDIR\Demos\SimulationSettings\ParallelCC3DExamples\cellsort_3D_open_mp\Simulation\cellsort_3D_open_mp.xml" Delete "$INSTDIR\Demos\SimulationSettings\ParallelCC3DExamples\diffusion-3D\diffusion-3D.cc3d" Delete "$INSTDIR\Demos\SimulationSettings\ParallelCC3DExamples\diffusion-3D\Simulation\diffusion-3D.py" Delete "$INSTDIR\Demos\SimulationSettings\ParallelCC3DExamples\diffusion-3D\Simulation\diffusion_3D.pulse.txt" Delete "$INSTDIR\Demos\SimulationSettings\ParallelCC3DExamples\DynamicNumberOfProcessors\DynamicNumberOfProcessors.cc3d" Delete "$INSTDIR\Demos\SimulationSettings\ParallelCC3DExamples\DynamicNumberOfProcessors\Simulation\DynamicNumberOfProcessors.py" Delete "$INSTDIR\Demos\SimulationSettings\ParallelCC3DExamples\DynamicNumberOfProcessors\Simulation\DynamicNumberOfProcessors.xml" Delete "$INSTDIR\Demos\SimulationSettings\ParallelCC3DExamples\DynamicNumberOfProcessors\Simulation\DynamicNumberOfProcessorsSteppables.py" Delete "$INSTDIR\Demos\SimulationSettings\ParallelCC3DExamples\elasticityTest\elasticityTest.cc3d" Delete "$INSTDIR\Demos\SimulationSettings\ParallelCC3DExamples\elasticityTest\Simulation\elasticityTest.piff" Delete "$INSTDIR\Demos\SimulationSettings\ParallelCC3DExamples\elasticityTest\Simulation\elasticityTest.xml" Delete "$INSTDIR\Demos\SimulationSettings\ParallelCC3DExamples\FocalPointPlasticityCompartments\FocalPointPlasticityCompartments.cc3d" Delete "$INSTDIR\Demos\SimulationSettings\ParallelCC3DExamples\FocalPointPlasticityCompartments\Simulation\FocalPointPlasticityCompartments.xml" Delete "$INSTDIR\Demos\SimulationSettings\ParallelCC3DExamples\FocalPointPlasticityCompartments\Simulation\plasticityCompartments.piff" Delete "$INSTDIR\Demos\SimulationSettings\ParameterUnits\cellsort_2D_units.cc3d" Delete "$INSTDIR\Demos\SimulationSettings\ParameterUnits\Simulation\cellsort_2D_units.xml" Delete "$INSTDIR\Demos\SimulationSettings\PlayerSettings\cellsort_2D_PlayerSettings.cc3d" Delete "$INSTDIR\Demos\SimulationSettings\PlayerSettings\Simulation\cellsort_2D_PlayerSettings.xml" Delete "$INSTDIR\Demos\SimulationSettings\SimulationStatistics\cellsort_2D_statistics\cellsort_2D_statistics.cc3d" Delete "$INSTDIR\Demos\SimulationSettings\SimulationStatistics\cellsort_2D_statistics\Simulation\cellsort_2D_statistics.xml" Delete "$INSTDIR\Demos\SimulationSettings\SimulationStatistics\cellsort_2D_statistics_spin_flip\cellsort_2D_statistics_spin_flip.cc3d" Delete "$INSTDIR\Demos\SimulationSettings\SimulationStatistics\cellsort_2D_statistics_spin_flip\Simulation\cellsort_2D_statistics_spin_flip.xml" Delete "$INSTDIR\Demos\SimulationSettings\Steering\cellsort_2D_steering.cc3d" Delete "$INSTDIR\Demos\SimulationSettings\Steering\Simulation\cellsort_2D_steering.py" Delete "$INSTDIR\Demos\SimulationSettings\Steering\Simulation\cellsort_2D_steering.xml" Delete "$INSTDIR\Demos\SimulationSettings\Steering\Simulation\cellsort_2D_steering_steppables.py" Delete "$INSTDIR\Demos\SimulationSettings\VariableMotility\cellsort_2D_variable_motility.cc3d" Delete "$INSTDIR\Demos\SimulationSettings\VariableMotility\Simulation\cellsort_2D_variable_motility.xml" Delete "$INSTDIR\Demos\SteppableDemos\BoxWatcher\cellsort_2D_box_watcher.cc3d" Delete "$INSTDIR\Demos\SteppableDemos\BoxWatcher\Simulation\cellsort_2D_box_watcher.xml" Delete "$INSTDIR\Demos\SteppableDemos\DiffusionSolverFE\DiffusionSolverFE\DiffusionSolverFE.cc3d" Delete "$INSTDIR\Demos\SteppableDemos\DiffusionSolverFE\DiffusionSolverFE\Simulation\bacterium_macrophage.piff" Delete "$INSTDIR\Demos\SteppableDemos\DiffusionSolverFE\DiffusionSolverFE\Simulation\DiffusionSolverFE.xml" Delete "$INSTDIR\Demos\SteppableDemos\DiffusionSolverFE\DiffusionSolverFE_3D\DiffusionSolverFE_3D.cc3d" Delete "$INSTDIR\Demos\SteppableDemos\DiffusionSolverFE\DiffusionSolverFE_3D\Simulation\DiffusionSolverFE_3D.txt" Delete "$INSTDIR\Demos\SteppableDemos\DiffusionSolverFE\DiffusionSolverFE_3D\Simulation\DiffusionSolverFE_3D.xml" Delete "$INSTDIR\Demos\SteppableDemos\DiffusionSolverFE\diffusion_2D_scale\diffusion_2D_scale.cc3d" Delete "$INSTDIR\Demos\SteppableDemos\DiffusionSolverFE\diffusion_2D_scale\Simulation\diffusion_2D.pulse.txt" Delete "$INSTDIR\Demos\SteppableDemos\DiffusionSolverFE\diffusion_2D_scale\Simulation\diffusion_2D_scale.xml" Delete "$INSTDIR\Demos\SteppableDemos\DiffusionSolverFE\diffusion_2D_scale_wall\diffusion_2D_scale_wall.cc3d" Delete "$INSTDIR\Demos\SteppableDemos\DiffusionSolverFE\diffusion_2D_scale_wall\Simulation\diffusion_2D_scale_wall.piff" Delete "$INSTDIR\Demos\SteppableDemos\DiffusionSolverFE\diffusion_2D_scale_wall\Simulation\diffusion_2D_scale_wall.pulse.txt" Delete "$INSTDIR\Demos\SteppableDemos\DiffusionSolverFE\diffusion_2D_scale_wall\Simulation\diffusion_2D_scale_wall.xml" Delete "$INSTDIR\Demos\SteppableDemos\DiffusionSolverFE\diffusion_3D_scale_wall\diffusion_3D_scale_wall.cc3d" Delete "$INSTDIR\Demos\SteppableDemos\DiffusionSolverFE\diffusion_3D_scale_wall\Simulation\diffusion_3D_scale_wall.piff" Delete "$INSTDIR\Demos\SteppableDemos\DiffusionSolverFE\diffusion_3D_scale_wall\Simulation\diffusion_3D_scale_wall.pulse.txt" Delete "$INSTDIR\Demos\SteppableDemos\DiffusionSolverFE\diffusion_3D_scale_wall\Simulation\diffusion_3D_scale_wall.xml" Delete "$INSTDIR\Demos\SteppableDemos\DiffusionSolverFE_OpenCL\DiffusionSolverFE_OpenCL\DiffusionSolverFE_OpenCL.cc3d" Delete "$INSTDIR\Demos\SteppableDemos\DiffusionSolverFE_OpenCL\DiffusionSolverFE_OpenCL\Simulation\bacterium_macrophage.piff" Delete "$INSTDIR\Demos\SteppableDemos\DiffusionSolverFE_OpenCL\DiffusionSolverFE_OpenCL\Simulation\diffusion_2D_scale_OpenCL.txt" Delete "$INSTDIR\Demos\SteppableDemos\DiffusionSolverFE_OpenCL\DiffusionSolverFE_OpenCL\Simulation\diffusion_2D_scale_OpenCL.xml" Delete "$INSTDIR\Demos\SteppableDemos\DiffusionSolverFE_OpenCL\DiffusionSolverFE_OpenCL_3D\DiffusionSolverFE_OpenCL_3D.cc3d" Delete "$INSTDIR\Demos\SteppableDemos\DiffusionSolverFE_OpenCL\DiffusionSolverFE_OpenCL_3D\Simulation\DiffusionSolverFE_OpenCL_3D.txt" Delete "$INSTDIR\Demos\SteppableDemos\DiffusionSolverFE_OpenCL\DiffusionSolverFE_OpenCL_3D\Simulation\DiffusionSolverFE_OpenCL_3D.xml" Delete "$INSTDIR\Demos\SteppableDemos\FastDiffusionSolver2DFE\diffusion_fast_box\diffusion_fast_box.cc3d" Delete "$INSTDIR\Demos\SteppableDemos\FastDiffusionSolver2DFE\diffusion_fast_box\Simulation\diffusion_2D_fast_box.pulse.txt" Delete "$INSTDIR\Demos\SteppableDemos\FastDiffusionSolver2DFE\diffusion_fast_box\Simulation\diffusion_fast_box.xml" Delete "$INSTDIR\Demos\SteppableDemos\FlexibleDiffusionSolverADE\diffusion_2D_ADE\diffusion_2D_ADE.cc3d" Delete "$INSTDIR\Demos\SteppableDemos\FlexibleDiffusionSolverADE\diffusion_2D_ADE\Simulation\diffusion_2D.pulse.txt" Delete "$INSTDIR\Demos\SteppableDemos\FlexibleDiffusionSolverADE\diffusion_2D_ADE\Simulation\diffusion_2D_ADE.xml" Delete "$INSTDIR\Demos\SteppableDemos\FlexibleDiffusionSolverADE\diffusion_3D_ADE\diffusion_3D_ADE.cc3d" Delete "$INSTDIR\Demos\SteppableDemos\FlexibleDiffusionSolverADE\diffusion_3D_ADE\Simulation\diffusion_3D_ADE.xml" Delete "$INSTDIR\Demos\SteppableDemos\FlexibleDiffusionSolverADE\diffusion_3D_ADE\Simulation\diffusion_3D_fast_box.pulse.txt" Delete "$INSTDIR\Demos\SteppableDemos\FlexibleDiffusionSolverFE\diffusion_2D\diffusion_2D.cc3d" Delete "$INSTDIR\Demos\SteppableDemos\FlexibleDiffusionSolverFE\diffusion_2D\Simulation\diffusion_2D.pulse.txt" Delete "$INSTDIR\Demos\SteppableDemos\FlexibleDiffusionSolverFE\diffusion_2D\Simulation\diffusion_2D.xml" Delete "$INSTDIR\Demos\SteppableDemos\FlexibleDiffusionSolverFE\diffusion_2D_init\diffusion_2D_init.cc3d" Delete "$INSTDIR\Demos\SteppableDemos\FlexibleDiffusionSolverFE\diffusion_2D_init\Simulation\diffusion_2D_init.xml" Delete "$INSTDIR\Demos\SteppableDemos\FlexibleDiffusionSolverFE\diffusion_2D_multicall\diffusion_2D_multicall.cc3d" Delete "$INSTDIR\Demos\SteppableDemos\FlexibleDiffusionSolverFE\diffusion_2D_multicall\Simulation\amoebae_2D.piff" Delete "$INSTDIR\Demos\SteppableDemos\FlexibleDiffusionSolverFE\diffusion_2D_multicall\Simulation\diffusion_2D.pulse.txt" Delete "$INSTDIR\Demos\SteppableDemos\FlexibleDiffusionSolverFE\diffusion_2D_multicall\Simulation\diffusion_2D_multicall.xml" Delete "$INSTDIR\Demos\SteppableDemos\FlexibleDiffusionSolverFE\diffusion_2D_try\diffusion_2D_try.cc3d" Delete "$INSTDIR\Demos\SteppableDemos\FlexibleDiffusionSolverFE\diffusion_2D_try\Simulation\diffusion_2D.pulse.txt" Delete "$INSTDIR\Demos\SteppableDemos\FlexibleDiffusionSolverFE\diffusion_2D_try\Simulation\diffusion_2D_try.xml" Delete "$INSTDIR\Demos\SteppableDemos\FlexibleDiffusionSolverFE\diffusion_2D_uptake\diffusion_2D_uptake.cc3d" Delete "$INSTDIR\Demos\SteppableDemos\FlexibleDiffusionSolverFE\diffusion_2D_uptake\Simulation\diffusion_2D_uptake.xml" Delete "$INSTDIR\Demos\SteppableDemos\FlexibleDiffusionSolverFE\diffusion_fast_box_3D\diffusion_fast_box_3D.cc3d" Delete "$INSTDIR\Demos\SteppableDemos\FlexibleDiffusionSolverFE\diffusion_fast_box_3D\Simulation\diffusion_3D_fast_box.pulse.txt" Delete "$INSTDIR\Demos\SteppableDemos\FlexibleDiffusionSolverFE\diffusion_fast_box_3D\Simulation\diffusion_fast_box_3D.xml" Delete "$INSTDIR\Demos\SteppableDemos\FlexibleDiffusionSolverFE\diffusion_inside_2D\diffusion_inside_2D.cc3d" Delete "$INSTDIR\Demos\SteppableDemos\FlexibleDiffusionSolverFE\diffusion_inside_2D\Simulation\diffusion_2D_wall.pulse.txt" Delete "$INSTDIR\Demos\SteppableDemos\FlexibleDiffusionSolverFE\diffusion_inside_2D\Simulation\diffusion_inside.piff" Delete "$INSTDIR\Demos\SteppableDemos\FlexibleDiffusionSolverFE\diffusion_inside_2D\Simulation\diffusion_inside_2D.xml" Delete "$INSTDIR\Demos\SteppableDemos\FlexibleDiffusionSolverFE\diffusion_wall_2D\diffusion_wall_2D.cc3d" Delete "$INSTDIR\Demos\SteppableDemos\FlexibleDiffusionSolverFE\diffusion_wall_2D\Simulation\diffusion_2D_wall.pulse.txt" Delete "$INSTDIR\Demos\SteppableDemos\FlexibleDiffusionSolverFE\diffusion_wall_2D\Simulation\diffusion_wall.piff" Delete "$INSTDIR\Demos\SteppableDemos\FlexibleDiffusionSolverFE\diffusion_wall_2D\Simulation\diffusion_wall_2D.xml" Delete "$INSTDIR\Demos\SteppableDemos\FlexibleDiffusionSolverFE\Steering\diffusion_steering.cc3d" Delete "$INSTDIR\Demos\SteppableDemos\FlexibleDiffusionSolverFE\Steering\Simulation\diffusion_2D.pulse.txt" Delete "$INSTDIR\Demos\SteppableDemos\FlexibleDiffusionSolverFE\Steering\Simulation\diffusion_2D_steering.py" Delete "$INSTDIR\Demos\SteppableDemos\FlexibleDiffusionSolverFE\Steering\Simulation\diffusion_2D_steering.xml" Delete "$INSTDIR\Demos\SteppableDemos\FlexibleDiffusionSolverFE\Steering\Simulation\diffusion_2D_steering_steppables.py" Delete "$INSTDIR\Demos\SteppableDemos\KernelDiffusionSolver\diffusion_2D_kernel\diffusion_2D_kernel.cc3d" Delete "$INSTDIR\Demos\SteppableDemos\KernelDiffusionSolver\diffusion_2D_kernel\Simulation\diffusion_2D.pulse.txt" Delete "$INSTDIR\Demos\SteppableDemos\KernelDiffusionSolver\diffusion_2D_kernel\Simulation\diffusion_2D_kernel.xml" Delete "$INSTDIR\Demos\SteppableDemos\KernelDiffusionSolver\diffusion_2D_kernel_coarse_grain\diffusion_2D_kernel_coarse_grain.cc3d" Delete "$INSTDIR\Demos\SteppableDemos\KernelDiffusionSolver\diffusion_2D_kernel_coarse_grain\Simulation\diffusion_2D_coarse_grain.pulse.txt" Delete "$INSTDIR\Demos\SteppableDemos\KernelDiffusionSolver\diffusion_2D_kernel_coarse_grain\Simulation\diffusion_2D_kernel_coarse_grain.xml" Delete "$INSTDIR\Demos\SteppableDemos\ReactionDiffusionSolverFE\ReactionDiffusioin_2D\ReactionDiffusioin_2D.cc3d" Delete "$INSTDIR\Demos\SteppableDemos\ReactionDiffusionSolverFE\ReactionDiffusioin_2D\Simulation\diffusion_2D.pulse.txt" Delete "$INSTDIR\Demos\SteppableDemos\ReactionDiffusionSolverFE\ReactionDiffusioin_2D\Simulation\ReactionDiffusioin_2D.xml" Delete "$INSTDIR\Demos\SteppableDemos\ReactionDiffusionSolverFE\ReactionDiffusioin_2D_FN\ReactionDiffusioin_2D_FN.cc3d" Delete "$INSTDIR\Demos\SteppableDemos\ReactionDiffusionSolverFE\ReactionDiffusioin_2D_FN\Simulation\FN.pulse.txt" Delete "$INSTDIR\Demos\SteppableDemos\ReactionDiffusionSolverFE\ReactionDiffusioin_2D_FN\Simulation\ReactionDiffusioin_2D_FN.xml" Delete "$INSTDIR\Demos\SteppableDemos\ReactionDiffusionSolverFE_OpenCL_Implicit\ReactionDiffusion_OpenCL_Implicit_3D\ReactionDiffusion_OpenCL_Implicit_3D.cc3d" Delete "$INSTDIR\Demos\SteppableDemos\ReactionDiffusionSolverFE_OpenCL_Implicit\ReactionDiffusion_OpenCL_Implicit_3D\Simulation\ReactionDiffusion_OpenCL_3D.txt" Delete "$INSTDIR\Demos\SteppableDemos\ReactionDiffusionSolverFE_OpenCL_Implicit\ReactionDiffusion_OpenCL_Implicit_3D\Simulation\ReactionDiffusion_OpenCL_3D.xml" Delete "$INSTDIR\Demos\SteppableDemos\ReactionDiffusionSolverFE_OpenCL_Implicit\SimpleDiffusion\SimpleDiffusion.cc3d" Delete "$INSTDIR\Demos\SteppableDemos\ReactionDiffusionSolverFE_OpenCL_Implicit\SimpleDiffusion\Simulation\SimpleDiffusion.txt" Delete "$INSTDIR\Demos\SteppableDemos\ReactionDiffusionSolverFE_OpenCL_Implicit\SimpleDiffusion\Simulation\SimpleDiffusion.xml" Delete "$INSTDIR\Demos\SteppableDemos\secretion\secretion.cc3d" Delete "$INSTDIR\Demos\SteppableDemos\secretion\Simulation\bacterium_macrophage_2D_secretion.py" Delete "$INSTDIR\Demos\SteppableDemos\secretion\Simulation\bacterium_macrophage_2D_secretion.xml" Delete "$INSTDIR\Demos\SteppableDemos\secretion\Simulation\bacterium_macrophage_2D_secretion_steppables.py" Delete "$INSTDIR\Demos\SteppableDemos\secretion\Simulation\bacterium_macrophage_2D_wall.piff" Delete "$INSTDIR\Demos\SteppableDemos\SecretionSteadyState\SecretionSteadyState.cc3d" Delete "$INSTDIR\Demos\SteppableDemos\SecretionSteadyState\Simulation\diffusion_2D.pulse.txt" Delete "$INSTDIR\Demos\SteppableDemos\SecretionSteadyState\Simulation\SecretionSteadyState.py" Delete "$INSTDIR\Demos\SteppableDemos\SecretionSteadyState\Simulation\SecretionSteadyState.xml" Delete "$INSTDIR\Demos\SteppableDemos\SecretionSteadyState\Simulation\SecretionSteadyStateSteppables.py" Delete "$INSTDIR\Demos\SteppableDemos\SteadyStateDiffusionSolver\diffusion_steady_state_2D\diffusion_steady_state_2D.cc3d" Delete "$INSTDIR\Demos\SteppableDemos\SteadyStateDiffusionSolver\diffusion_steady_state_2D\Simulation\diffusion_steady_state_2D.xml" Delete "$INSTDIR\Demos\SteppableDemos\SteadyStateDiffusionSolver\diffusion_steady_state_2D\Simulation\elasticityTest.piff" Delete "$INSTDIR\Demos\SteppableDemos\SteadyStateDiffusionSolver\diffusion_steady_state_ext_potential\diffusion_steady_state_ext_potential.cc3d" Delete "$INSTDIR\Demos\SteppableDemos\SteadyStateDiffusionSolver\diffusion_steady_state_ext_potential\Simulation\diffusion_steady_state_ext_potential.xml" Delete "$INSTDIR\Demos\SteppableDemos\SteadyStateDiffusionSolver\diffusion_steady_state_ext_potential\Simulation\elasticityTest.piff" Delete "$INSTDIR\Demos\SteppableDemos\SteadyStateDiffusionSolver\diffusion_steady_state_ext_potential_3D\diffusion_steady_state_ext_potential_3D.cc3d" Delete "$INSTDIR\Demos\SteppableDemos\SteadyStateDiffusionSolver\diffusion_steady_state_ext_potential_3D\Simulation\diffusion_steady_state_ext_potential_3D.xml" Delete "$INSTDIR\Demos\SteppableDemos\SteadyStateDiffusionSolver\diffusion_steady_state_ext_potential_3D\Simulation\elasticityTest.piff" Delete "$INSTDIR\Demos\SteppableDemos\SteadyStateDiffusionSolver\diffusion_steady_state_ext_potential_3D_oxygen\diffusion_steady_state_ext_potential_3D_oxygen.cc3d" Delete "$INSTDIR\Demos\SteppableDemos\SteadyStateDiffusionSolver\diffusion_steady_state_ext_potential_3D_oxygen\Simulation\diffusion_steady_state_ext_potential_3D_oxygen.xml" Delete "$INSTDIR\Demos\SteppableDemos\SteadyStateDiffusionSolver\diffusion_steady_state_ext_potential_3D_oxygen\Simulation\elasticityTest.piff" Delete "$INSTDIR\icons\cc3d_128x128_logo.ico" Delete "$INSTDIR\icons\cc3d_128x128_logo.png" Delete "$INSTDIR\icons\cc3d_128x128_logo_setup.ico" Delete "$INSTDIR\icons\cc3d_128x128_logo_www.ico" Delete "$INSTDIR\icons\cc3d_256x256_logo.ico" Delete "$INSTDIR\icons\cc3d_256x256_logo.png" Delete "$INSTDIR\icons\cc3d_256x256_logo_setup.ico" Delete "$INSTDIR\icons\cc3d_256x256_logo_setup.png" Delete "$INSTDIR\icons\cc3d_256x256_logo_setup.tif" Delete "$INSTDIR\icons\cc3d_256x256_logo_www.ico" Delete "$INSTDIR\icons\cc3d_256x256_logo_www.png" Delete "$INSTDIR\icons\cc3d_64x64_logo.ico" Delete "$INSTDIR\icons\cc3d_64x64_logo.png" Delete "$INSTDIR\icons\cc3d_64x64_logo_setup.ico" Delete "$INSTDIR\icons\cc3d_64x64_logo_www.ico" Delete "$INSTDIR\icons\lizard-at-a-computer-small.png" Delete "$INSTDIR\icons\splash_angio.png" Delete "$INSTDIR\icons\Thumbs.db" Delete "$INSTDIR\include\bionetsolver\Bionetwork.h" Delete "$INSTDIR\include\bionetsolver\BionetworkDLLSpecifier.h" Delete "$INSTDIR\include\bionetsolver\BionetworkSBML.h" Delete "$INSTDIR\include\bionetsolver\BionetworkTemplateLibrary.h" Delete "$INSTDIR\include\bionetsolver\BionetworkUtilManager.h" Delete "$INSTDIR\include\bionetsolver\soslib_CvodeSettings.h" Delete "$INSTDIR\include\bionetsolver\soslib_IntegratorInstance.h" Delete "$INSTDIR\include\bionetsolver\soslib_OdeModel.h" Delete "$INSTDIR\include\CompuCell3D\BasicUtils\BasicArray.h" Delete "$INSTDIR\include\CompuCell3D\BasicUtils\BasicClassAccessor.h" Delete "$INSTDIR\include\CompuCell3D\BasicUtils\BasicClassAccessorBase.h" Delete "$INSTDIR\include\CompuCell3D\BasicUtils\BasicClassFactory.h" Delete "$INSTDIR\include\CompuCell3D\BasicUtils\BasicClassFactoryBase.h" Delete "$INSTDIR\include\CompuCell3D\BasicUtils\BasicClassGroup.h" Delete "$INSTDIR\include\CompuCell3D\BasicUtils\BasicClassGroupArray.h" Delete "$INSTDIR\include\CompuCell3D\BasicUtils\BasicClassGroupFactory.h" Delete "$INSTDIR\include\CompuCell3D\BasicUtils\BasicClassRegistry.h" Delete "$INSTDIR\include\CompuCell3D\BasicUtils\BasicCounter.h" Delete "$INSTDIR\include\CompuCell3D\BasicUtils\BasicDynamicClassFactory.h" Delete "$INSTDIR\include\CompuCell3D\BasicUtils\BasicDynamicClassNode.h" Delete "$INSTDIR\include\CompuCell3D\BasicUtils\BasicDynamicClassNodeBase.h" Delete "$INSTDIR\include\CompuCell3D\BasicUtils\BasicException.h" Delete "$INSTDIR\include\CompuCell3D\BasicUtils\BasicFileLocation.h" Delete "$INSTDIR\include\CompuCell3D\BasicUtils\BasicPluginInfo.h" Delete "$INSTDIR\include\CompuCell3D\BasicUtils\BasicPluginManager.h" Delete "$INSTDIR\include\CompuCell3D\BasicUtils\BasicPluginProxy.h" Delete "$INSTDIR\include\CompuCell3D\BasicUtils\BasicRandomNumberGenerator.h" Delete "$INSTDIR\include\CompuCell3D\BasicUtils\BasicSmartPointer.h" Delete "$INSTDIR\include\CompuCell3D\BasicUtils\BasicString.h" Delete "$INSTDIR\include\CompuCell3D\BasicUtils\BasicStringTable.h" Delete "$INSTDIR\include\CompuCell3D\BasicUtils\WindowsGlob.h" Delete "$INSTDIR\include\CompuCell3D\BasicUtils\wrapdll.h" Delete "$INSTDIR\include\CompuCell3D\BasicUtils\Zap.h" Delete "$INSTDIR\include\CompuCell3D\CompuCell3D\ClassRegistry.h" Delete "$INSTDIR\include\CompuCell3D\CompuCell3D\CompuCellLibDLLSpecifier.h" Delete "$INSTDIR\include\CompuCell3D\CompuCell3D\ParseData.h" Delete "$INSTDIR\include\CompuCell3D\CompuCell3D\Parser.h" Delete "$INSTDIR\include\CompuCell3D\CompuCell3D\ParserStorage.h" Delete "$INSTDIR\include\CompuCell3D\CompuCell3D\Plugin.h" Delete "$INSTDIR\include\CompuCell3D\CompuCell3D\PluginBase.h" Delete "$INSTDIR\include\CompuCell3D\CompuCell3D\PluginManager.h" Delete "$INSTDIR\include\CompuCell3D\CompuCell3D\PottsParseData.h" Delete "$INSTDIR\include\CompuCell3D\CompuCell3D\Serializer.h" Delete "$INSTDIR\include\CompuCell3D\CompuCell3D\SimObject.h" Delete "$INSTDIR\include\CompuCell3D\CompuCell3D\Simulator.h" Delete "$INSTDIR\include\CompuCell3D\CompuCell3D\SteerableObject.h" Delete "$INSTDIR\include\CompuCell3D\CompuCell3D\Steppable.h" Delete "$INSTDIR\include\CompuCell3D\CompuCell3D\Automaton\Automaton.h" Delete "$INSTDIR\include\CompuCell3D\CompuCell3D\Automaton\CellType.h" Delete "$INSTDIR\include\CompuCell3D\CompuCell3D\Automaton\CellTypeDynamicClassNode.h" Delete "$INSTDIR\include\CompuCell3D\CompuCell3D\Automaton\CellTypeNode.h" Delete "$INSTDIR\include\CompuCell3D\CompuCell3D\Automaton\Transition.h" Delete "$INSTDIR\include\CompuCell3D\CompuCell3D\Boundary\Algorithm.h" Delete "$INSTDIR\include\CompuCell3D\CompuCell3D\Boundary\AlgorithmFactory.h" Delete "$INSTDIR\include\CompuCell3D\CompuCell3D\Boundary\Boundary.h" Delete "$INSTDIR\include\CompuCell3D\CompuCell3D\Boundary\BoundaryDLLSpecifier.h" Delete "$INSTDIR\include\CompuCell3D\CompuCell3D\Boundary\BoundaryFactory.h" Delete "$INSTDIR\include\CompuCell3D\CompuCell3D\Boundary\BoundaryStrategy.h" Delete "$INSTDIR\include\CompuCell3D\CompuCell3D\Boundary\BoundaryTypeDefinitions.h" Delete "$INSTDIR\include\CompuCell3D\CompuCell3D\Boundary\ChengbangAlgorithm.h" Delete "$INSTDIR\include\CompuCell3D\CompuCell3D\Boundary\DefaultAlgorithm.h" Delete "$INSTDIR\include\CompuCell3D\CompuCell3D\Boundary\NoFluxBoundary.h" Delete "$INSTDIR\include\CompuCell3D\CompuCell3D\Boundary\PeriodicBoundary.h" Delete "$INSTDIR\include\CompuCell3D\CompuCell3D\Field3D\AdjacentNeighbor.h" Delete "$INSTDIR\include\CompuCell3D\CompuCell3D\Field3D\Array3D.h" Delete "$INSTDIR\include\CompuCell3D\CompuCell3D\Field3D\Dim3D.h" Delete "$INSTDIR\include\CompuCell3D\CompuCell3D\Field3D\Field3D.h" Delete "$INSTDIR\include\CompuCell3D\CompuCell3D\Field3D\Field3DChangeWatcher.h" Delete "$INSTDIR\include\CompuCell3D\CompuCell3D\Field3D\Field3DImpl.h" Delete "$INSTDIR\include\CompuCell3D\CompuCell3D\Field3D\Field3DIndex.h" Delete "$INSTDIR\include\CompuCell3D\CompuCell3D\Field3D\Field3DIO.h" Delete "$INSTDIR\include\CompuCell3D\CompuCell3D\Field3D\Neighbor.h" Delete "$INSTDIR\include\CompuCell3D\CompuCell3D\Field3D\NeighborFinder.h" Delete "$INSTDIR\include\CompuCell3D\CompuCell3D\Field3D\Point3D.h" Delete "$INSTDIR\include\CompuCell3D\CompuCell3D\Field3D\WatchableField3D.h" Delete "$INSTDIR\include\CompuCell3D\CompuCell3D\plugins\AdhesionFlex\AdhesionFlexData.h" Delete "$INSTDIR\include\CompuCell3D\CompuCell3D\plugins\AdhesionFlex\AdhesionFlexDLLSpecifier.h" Delete "$INSTDIR\include\CompuCell3D\CompuCell3D\plugins\AdhesionFlex\AdhesionFlexPlugin.h" Delete "$INSTDIR\include\CompuCell3D\CompuCell3D\plugins\BoundaryMonitor\BoundaryMonitorDLLSpecifier.h" Delete "$INSTDIR\include\CompuCell3D\CompuCell3D\plugins\BoundaryMonitor\BoundaryMonitorPlugin.h" Delete "$INSTDIR\include\CompuCell3D\CompuCell3D\plugins\BoundaryPixelTracker\BoundaryPixelTracker.h" Delete "$INSTDIR\include\CompuCell3D\CompuCell3D\plugins\BoundaryPixelTracker\BoundaryPixelTrackerDLLSpecifier.h" Delete "$INSTDIR\include\CompuCell3D\CompuCell3D\plugins\BoundaryPixelTracker\BoundaryPixelTrackerPlugin.h" Delete "$INSTDIR\include\CompuCell3D\CompuCell3D\plugins\CellOrientation\CellOrientationDLLSpecifier.h" Delete "$INSTDIR\include\CompuCell3D\CompuCell3D\plugins\CellOrientation\CellOrientationPlugin.h" Delete "$INSTDIR\include\CompuCell3D\CompuCell3D\plugins\CellOrientation\CellOrientationVector.h" Delete "$INSTDIR\include\CompuCell3D\CompuCell3D\plugins\CellType\CellTypeDLLSpecifier.h" Delete "$INSTDIR\include\CompuCell3D\CompuCell3D\plugins\CellType\CellTypeG.h" Delete "$INSTDIR\include\CompuCell3D\CompuCell3D\plugins\CellType\CellTypePlugin.h" Delete "$INSTDIR\include\CompuCell3D\CompuCell3D\plugins\CellTypeMonitor\CellTypeMonitorDLLSpecifier.h" Delete "$INSTDIR\include\CompuCell3D\CompuCell3D\plugins\CellTypeMonitor\CellTypeMonitorPlugin.h" Delete "$INSTDIR\include\CompuCell3D\CompuCell3D\plugins\CenterOfMass\CenterOfMassDLLSpecifier.h" Delete "$INSTDIR\include\CompuCell3D\CompuCell3D\plugins\CenterOfMass\CenterOfMassPlugin.h" Delete "$INSTDIR\include\CompuCell3D\CompuCell3D\plugins\Chemotaxis\ChemotaxisData.h" Delete "$INSTDIR\include\CompuCell3D\CompuCell3D\plugins\Chemotaxis\ChemotaxisDLLSpecifier.h" Delete "$INSTDIR\include\CompuCell3D\CompuCell3D\plugins\Chemotaxis\ChemotaxisPlugin.h" Delete "$INSTDIR\include\CompuCell3D\CompuCell3D\plugins\ChemotaxisDicty\ChemotaxisDictyDLLSpecifier.h" Delete "$INSTDIR\include\CompuCell3D\CompuCell3D\plugins\ChemotaxisDicty\ChemotaxisDictyPlugin.h" Delete "$INSTDIR\include\CompuCell3D\CompuCell3D\plugins\ChemotaxisSimple\ChemotaxisSimpleDLLSpecifier.h" Delete "$INSTDIR\include\CompuCell3D\CompuCell3D\plugins\ChemotaxisSimple\ChemotaxisSimpleEnergy.h" Delete "$INSTDIR\include\CompuCell3D\CompuCell3D\plugins\ClusterSurface\ClusterSurfaceDLLSpecifier.h" Delete "$INSTDIR\include\CompuCell3D\CompuCell3D\plugins\ClusterSurface\ClusterSurfacePlugin.h" Delete "$INSTDIR\include\CompuCell3D\CompuCell3D\plugins\ClusterSurfaceTracker\ClusterSurfaceTrackerDLLSpecifier.h" Delete "$INSTDIR\include\CompuCell3D\CompuCell3D\plugins\ClusterSurfaceTracker\ClusterSurfaceTrackerPlugin.h" Delete "$INSTDIR\include\CompuCell3D\CompuCell3D\plugins\Compartment\CompartmentDLLSpecifier.h" Delete "$INSTDIR\include\CompuCell3D\CompuCell3D\plugins\Compartment\CompartmentPlugin.h" Delete "$INSTDIR\include\CompuCell3D\CompuCell3D\plugins\Connectivity\ConnectivityDLLSpecifier.h" Delete "$INSTDIR\include\CompuCell3D\CompuCell3D\plugins\Connectivity\ConnectivityPlugin.h" Delete "$INSTDIR\include\CompuCell3D\CompuCell3D\plugins\ConnectivityGlobal\ConnectivityGlobalData.h" Delete "$INSTDIR\include\CompuCell3D\CompuCell3D\plugins\ConnectivityGlobal\ConnectivityGlobalDLLSpecifier.h" Delete "$INSTDIR\include\CompuCell3D\CompuCell3D\plugins\ConnectivityGlobal\ConnectivityGlobalPlugin.h" Delete "$INSTDIR\include\CompuCell3D\CompuCell3D\plugins\ConnectivityLocalFlex\ConnectivityLocalFlexData.h" Delete "$INSTDIR\include\CompuCell3D\CompuCell3D\plugins\ConnectivityLocalFlex\ConnectivityLocalFlexDLLSpecifier.h" Delete "$INSTDIR\include\CompuCell3D\CompuCell3D\plugins\ConnectivityLocalFlex\ConnectivityLocalFlexPlugin.h" Delete "$INSTDIR\include\CompuCell3D\CompuCell3D\plugins\Contact\ContactDLLSpecifier.h" Delete "$INSTDIR\include\CompuCell3D\CompuCell3D\plugins\Contact\ContactPlugin.h" Delete "$INSTDIR\include\CompuCell3D\CompuCell3D\plugins\ContactInternal\ContactInternalDLLSpecifier.h" Delete "$INSTDIR\include\CompuCell3D\CompuCell3D\plugins\ContactInternal\ContactInternalPlugin.h" Delete "$INSTDIR\include\CompuCell3D\CompuCell3D\plugins\ContactLocalFlex\ContactLocalFlexData.h" Delete "$INSTDIR\include\CompuCell3D\CompuCell3D\plugins\ContactLocalFlex\ContactLocalFlexDLLSpecifier.h" Delete "$INSTDIR\include\CompuCell3D\CompuCell3D\plugins\ContactLocalFlex\ContactLocalFlexPlugin.h" Delete "$INSTDIR\include\CompuCell3D\CompuCell3D\plugins\ContactLocalProduct\ContactLocalProductData.h" Delete "$INSTDIR\include\CompuCell3D\CompuCell3D\plugins\ContactLocalProduct\ContactLocalProductDLLSpecifier.h" Delete "$INSTDIR\include\CompuCell3D\CompuCell3D\plugins\ContactLocalProduct\ContactLocalProductPlugin.h" Delete "$INSTDIR\include\CompuCell3D\CompuCell3D\plugins\ContactMultiCad\ContactMultiCadData.h" Delete "$INSTDIR\include\CompuCell3D\CompuCell3D\plugins\ContactMultiCad\ContactMultiCadDLLSpecifier.h" Delete "$INSTDIR\include\CompuCell3D\CompuCell3D\plugins\ContactMultiCad\ContactMultiCadPlugin.h" Delete "$INSTDIR\include\CompuCell3D\CompuCell3D\plugins\ContactOrientation\ContactOrientationData.h" Delete "$INSTDIR\include\CompuCell3D\CompuCell3D\plugins\ContactOrientation\ContactOrientationDLLSpecifier.h" Delete "$INSTDIR\include\CompuCell3D\CompuCell3D\plugins\ContactOrientation\ContactOrientationPlugin.h" Delete "$INSTDIR\include\CompuCell3D\CompuCell3D\plugins\ConvergentExtension\ConvergentExtensionDLLSpecifier.h" Delete "$INSTDIR\include\CompuCell3D\CompuCell3D\plugins\ConvergentExtension\ConvergentExtensionPlugin.h" Delete "$INSTDIR\include\CompuCell3D\CompuCell3D\plugins\Curvature\CurvatureDLLSpecifier.h" Delete "$INSTDIR\include\CompuCell3D\CompuCell3D\plugins\Curvature\CurvaturePlugin.h" Delete "$INSTDIR\include\CompuCell3D\CompuCell3D\plugins\Curvature\CurvatureTracker.h" Delete "$INSTDIR\include\CompuCell3D\CompuCell3D\plugins\Elasticity\ElasticityDLLSpecifier.h" Delete "$INSTDIR\include\CompuCell3D\CompuCell3D\plugins\Elasticity\ElasticityPlugin.h" Delete "$INSTDIR\include\CompuCell3D\CompuCell3D\plugins\ElasticityTracker\ElasticityTracker.h" Delete "$INSTDIR\include\CompuCell3D\CompuCell3D\plugins\ElasticityTracker\ElasticityTrackerDLLSpecifier.h" Delete "$INSTDIR\include\CompuCell3D\CompuCell3D\plugins\ElasticityTracker\ElasticityTrackerPlugin.h" Delete "$INSTDIR\include\CompuCell3D\CompuCell3D\plugins\ExternalPotential\ExternalPotentialDLLSpecifier.h" Delete "$INSTDIR\include\CompuCell3D\CompuCell3D\plugins\ExternalPotential\ExternalPotentialPlugin.h" Delete "$INSTDIR\include\CompuCell3D\CompuCell3D\plugins\FocalPointPlasticity\FocalPointPlasticityDLLSpecifier.h" Delete "$INSTDIR\include\CompuCell3D\CompuCell3D\plugins\FocalPointPlasticity\FocalPointPlasticityPlugin.h" Delete "$INSTDIR\include\CompuCell3D\CompuCell3D\plugins\FocalPointPlasticity\FocalPointPlasticityTracker.h" Delete "$INSTDIR\include\CompuCell3D\CompuCell3D\plugins\GlobalBoundaryPixelTracker\GlobalBoundaryPixelTrackerDLLSpecifier.h" Delete "$INSTDIR\include\CompuCell3D\CompuCell3D\plugins\GlobalBoundaryPixelTracker\GlobalBoundaryPixelTrackerPlugin.h" Delete "$INSTDIR\include\CompuCell3D\CompuCell3D\plugins\LengthConstraint\LengthConstraintData.h" Delete "$INSTDIR\include\CompuCell3D\CompuCell3D\plugins\LengthConstraint\LengthConstraintDLLSpecifier.h" Delete "$INSTDIR\include\CompuCell3D\CompuCell3D\plugins\LengthConstraint\LengthConstraintPlugin.h" Delete "$INSTDIR\include\CompuCell3D\CompuCell3D\plugins\Mitosis\MitosisDLLSpecifier.h" Delete "$INSTDIR\include\CompuCell3D\CompuCell3D\plugins\Mitosis\MitosisPlugin.h" Delete "$INSTDIR\include\CompuCell3D\CompuCell3D\plugins\Mitosis\MitosisSimplePlugin.h" Delete "$INSTDIR\include\CompuCell3D\CompuCell3D\plugins\MomentOfInertia\CellMomentOfInertia.h" Delete "$INSTDIR\include\CompuCell3D\CompuCell3D\plugins\MomentOfInertia\MomentOfInertiaDLLSpecifier.h" Delete "$INSTDIR\include\CompuCell3D\CompuCell3D\plugins\MomentOfInertia\MomentOfInertiaPlugin.h" Delete "$INSTDIR\include\CompuCell3D\CompuCell3D\plugins\NeighborStick\NeighborStickDLLSpecifier.h" Delete "$INSTDIR\include\CompuCell3D\CompuCell3D\plugins\NeighborStick\NeighborStickPlugin.h" Delete "$INSTDIR\include\CompuCell3D\CompuCell3D\plugins\NeighborTracker\NeighborTracker.h" Delete "$INSTDIR\include\CompuCell3D\CompuCell3D\plugins\NeighborTracker\NeighborTrackerDLLSpecifier.h" Delete "$INSTDIR\include\CompuCell3D\CompuCell3D\plugins\NeighborTracker\NeighborTrackerPlugin.h" Delete "$INSTDIR\include\CompuCell3D\CompuCell3D\plugins\OrientedContact\OrientedContactDLLSpecifier.h" Delete "$INSTDIR\include\CompuCell3D\CompuCell3D\plugins\OrientedContact\OrientedContactPlugin.h" Delete "$INSTDIR\include\CompuCell3D\CompuCell3D\plugins\PDESolverCaller\PDESolverCallerDLLSpecifier.h" Delete "$INSTDIR\include\CompuCell3D\CompuCell3D\plugins\PDESolverCaller\PDESolverCallerPlugin.h" Delete "$INSTDIR\include\CompuCell3D\CompuCell3D\plugins\PixelTracker\PixelTracker.h" Delete "$INSTDIR\include\CompuCell3D\CompuCell3D\plugins\PixelTracker\PixelTrackerDLLSpecifier.h" Delete "$INSTDIR\include\CompuCell3D\CompuCell3D\plugins\PixelTracker\PixelTrackerPlugin.h" Delete "$INSTDIR\include\CompuCell3D\CompuCell3D\plugins\Plasticity\PlasticityDLLSpecifier.h" Delete "$INSTDIR\include\CompuCell3D\CompuCell3D\plugins\Plasticity\PlasticityPlugin.h" Delete "$INSTDIR\include\CompuCell3D\CompuCell3D\plugins\PlasticityTracker\PlasticityTracker.h" Delete "$INSTDIR\include\CompuCell3D\CompuCell3D\plugins\PlasticityTracker\PlasticityTrackerDLLSpecifier.h" Delete "$INSTDIR\include\CompuCell3D\CompuCell3D\plugins\PlasticityTracker\PlasticityTrackerPlugin.h" Delete "$INSTDIR\include\CompuCell3D\CompuCell3D\plugins\PlayerSettings\PlayerSettings.h" Delete "$INSTDIR\include\CompuCell3D\CompuCell3D\plugins\PlayerSettings\PlayerSettingsDLLSpecifier.h" Delete "$INSTDIR\include\CompuCell3D\CompuCell3D\plugins\PlayerSettings\PlayerSettingsPlugin.h" Delete "$INSTDIR\include\CompuCell3D\CompuCell3D\plugins\Polarization23\Polarization23Data.h" Delete "$INSTDIR\include\CompuCell3D\CompuCell3D\plugins\Polarization23\Polarization23DLLSpecifier.h" Delete "$INSTDIR\include\CompuCell3D\CompuCell3D\plugins\Polarization23\Polarization23Plugin.h" Delete "$INSTDIR\include\CompuCell3D\CompuCell3D\plugins\PolarizationVector\PolarizationVector.h" Delete "$INSTDIR\include\CompuCell3D\CompuCell3D\plugins\PolarizationVector\PolarizationVectorDLLSpecifier.h" Delete "$INSTDIR\include\CompuCell3D\CompuCell3D\plugins\PolarizationVector\PolarizationVectorPlugin.h" Delete "$INSTDIR\include\CompuCell3D\CompuCell3D\plugins\Rearrangement\RearrangementDLLSpecifier.h" Delete "$INSTDIR\include\CompuCell3D\CompuCell3D\plugins\Rearrangement\RearrangementPlugin.h" Delete "$INSTDIR\include\CompuCell3D\CompuCell3D\plugins\Secretion\FieldSecretor.h" Delete "$INSTDIR\include\CompuCell3D\CompuCell3D\plugins\Secretion\SecretionDataP.h" Delete "$INSTDIR\include\CompuCell3D\CompuCell3D\plugins\Secretion\SecretionDLLSpecifier.h" Delete "$INSTDIR\include\CompuCell3D\CompuCell3D\plugins\Secretion\SecretionPlugin.h" Delete "$INSTDIR\include\CompuCell3D\CompuCell3D\plugins\SimpleClock\SimpleClock.h" Delete "$INSTDIR\include\CompuCell3D\CompuCell3D\plugins\SimpleClock\SimpleClockDLLSpecifier.h" Delete "$INSTDIR\include\CompuCell3D\CompuCell3D\plugins\SimpleClock\SimpleClockPlugin.h" Delete "$INSTDIR\include\CompuCell3D\CompuCell3D\plugins\Stretchness\StretchnessDLLSpecifier.h" Delete "$INSTDIR\include\CompuCell3D\CompuCell3D\plugins\Stretchness\StretchnessPlugin.h" Delete "$INSTDIR\include\CompuCell3D\CompuCell3D\plugins\Surface\SurfaceDLLSpecifier.h" Delete "$INSTDIR\include\CompuCell3D\CompuCell3D\plugins\Surface\SurfacePlugin.h" Delete "$INSTDIR\include\CompuCell3D\CompuCell3D\plugins\SurfaceTracker\SurfaceTrackerDLLSpecifier.h" Delete "$INSTDIR\include\CompuCell3D\CompuCell3D\plugins\SurfaceTracker\SurfaceTrackerPlugin.h" Delete "$INSTDIR\include\CompuCell3D\CompuCell3D\plugins\Template\TemplatePlugin.h" Delete "$INSTDIR\include\CompuCell3D\CompuCell3D\plugins\Template\TemplatePluginDLLSpecifier.h" Delete "$INSTDIR\include\CompuCell3D\CompuCell3D\plugins\Viscosity\ViscosityDLLSpecifier.h" Delete "$INSTDIR\include\CompuCell3D\CompuCell3D\plugins\Viscosity\ViscosityPlugin.h" Delete "$INSTDIR\include\CompuCell3D\CompuCell3D\plugins\Volume\VolumeDLLSpecifier.h" Delete "$INSTDIR\include\CompuCell3D\CompuCell3D\plugins\Volume\VolumePlugin.h" Delete "$INSTDIR\include\CompuCell3D\CompuCell3D\plugins\VolumeTracker\VolumeTrackerDLLSpecifier.h" Delete "$INSTDIR\include\CompuCell3D\CompuCell3D\plugins\VolumeTracker\VolumeTrackerPlugin.h" Delete "$INSTDIR\include\CompuCell3D\CompuCell3D\Potts3D\AcceptanceFunction.h" Delete "$INSTDIR\include\CompuCell3D\CompuCell3D\Potts3D\AttributeAdder.h" Delete "$INSTDIR\include\CompuCell3D\CompuCell3D\Potts3D\Cell.h" Delete "$INSTDIR\include\CompuCell3D\CompuCell3D\Potts3D\CellChangeWatcher.h" Delete "$INSTDIR\include\CompuCell3D\CompuCell3D\Potts3D\CellGChangeWatcher.h" Delete "$INSTDIR\include\CompuCell3D\CompuCell3D\Potts3D\CellInventory.h" Delete "$INSTDIR\include\CompuCell3D\CompuCell3D\Potts3D\CellTypeMotilityData.h" Delete "$INSTDIR\include\CompuCell3D\CompuCell3D\Potts3D\CustomAcceptanceFunction.h" Delete "$INSTDIR\include\CompuCell3D\CompuCell3D\Potts3D\DefaultAcceptanceFunction.h" Delete "$INSTDIR\include\CompuCell3D\CompuCell3D\Potts3D\EnergyFunction.h" Delete "$INSTDIR\include\CompuCell3D\CompuCell3D\Potts3D\EnergyFunctionCalculator.h" Delete "$INSTDIR\include\CompuCell3D\CompuCell3D\Potts3D\EnergyFunctionCalculatorStatistics.h" Delete "$INSTDIR\include\CompuCell3D\CompuCell3D\Potts3D\FirstOrderExpansionAcceptanceFunction.h" Delete "$INSTDIR\include\CompuCell3D\CompuCell3D\Potts3D\FixedStepper.h" Delete "$INSTDIR\include\CompuCell3D\CompuCell3D\Potts3D\FluctuationAmplitudeFunction.h" Delete "$INSTDIR\include\CompuCell3D\CompuCell3D\Potts3D\Potts3D.h" Delete "$INSTDIR\include\CompuCell3D\CompuCell3D\Potts3D\StandardFluctuationAmplitudeFunctions.h" Delete "$INSTDIR\include\CompuCell3D\CompuCell3D\Potts3D\Stepper.h" Delete "$INSTDIR\include\CompuCell3D\CompuCell3D\Potts3D\TypeChangeWatcher.h" Delete "$INSTDIR\include\CompuCell3D\CompuCell3D\Potts3D\TypeTransition.h" Delete "$INSTDIR\include\CompuCell3D\CompuCell3D\steppables\BlobFieldInitializer\BlobFieldInitializer.h" Delete "$INSTDIR\include\CompuCell3D\CompuCell3D\steppables\BlobFieldInitializer\BlobFieldInitializerDLLSpecifier.h" Delete "$INSTDIR\include\CompuCell3D\CompuCell3D\steppables\BoxWatcher\BoxWatcher.h" Delete "$INSTDIR\include\CompuCell3D\CompuCell3D\steppables\BoxWatcher\BoxWatcherDLLSpecifier.h" Delete "$INSTDIR\include\CompuCell3D\CompuCell3D\steppables\CleaverMeshDumper\CleaverMeshDumper.h" Delete "$INSTDIR\include\CompuCell3D\CompuCell3D\steppables\CleaverMeshDumper\CleaverMeshDumperDLLSpecifier.h" Delete "$INSTDIR\include\CompuCell3D\CompuCell3D\steppables\Dicty\DictyChemotaxisSteppable.h" Delete "$INSTDIR\include\CompuCell3D\CompuCell3D\steppables\Dicty\DictyDLLSpecifier.h" Delete "$INSTDIR\include\CompuCell3D\CompuCell3D\steppables\Dicty\DictyFieldInitializer.h" Delete "$INSTDIR\include\CompuCell3D\CompuCell3D\steppables\FoamDataOutput\FoamDataOutput.h" Delete "$INSTDIR\include\CompuCell3D\CompuCell3D\steppables\FoamDataOutput\FoamDataOutputDLLSpecifier.h" Delete "$INSTDIR\include\CompuCell3D\CompuCell3D\steppables\MitosisSteppable\MitosisSteppable.h" Delete "$INSTDIR\include\CompuCell3D\CompuCell3D\steppables\MitosisSteppable\MitosisSteppableDLLSpecifier.h" Delete "$INSTDIR\include\CompuCell3D\CompuCell3D\steppables\ObjInitializer\ObjInitializer.h" Delete "$INSTDIR\include\CompuCell3D\CompuCell3D\steppables\ObjInitializer\ObjInitializerDLLSpecifier.h" Delete "$INSTDIR\include\CompuCell3D\CompuCell3D\steppables\PDESolvers\AdvectionDiffusionSolverFE.h" Delete "$INSTDIR\include\CompuCell3D\CompuCell3D\steppables\PDESolvers\BoundaryConditionSpecifier.h" Delete "$INSTDIR\include\CompuCell3D\CompuCell3D\steppables\PDESolvers\DiffSecrData.h" Delete "$INSTDIR\include\CompuCell3D\CompuCell3D\steppables\PDESolvers\Diffusable.h" Delete "$INSTDIR\include\CompuCell3D\CompuCell3D\steppables\PDESolvers\DiffusableGraph.h" Delete "$INSTDIR\include\CompuCell3D\CompuCell3D\steppables\PDESolvers\DiffusableVector.h" Delete "$INSTDIR\include\CompuCell3D\CompuCell3D\steppables\PDESolvers\DiffusableVector2D.h" Delete "$INSTDIR\include\CompuCell3D\CompuCell3D\steppables\PDESolvers\DiffusableVectorCommon.h" Delete "$INSTDIR\include\CompuCell3D\CompuCell3D\steppables\PDESolvers\DiffusableVectorFortran.h" Delete "$INSTDIR\include\CompuCell3D\CompuCell3D\steppables\PDESolvers\DiffusionSolverFE.h" Delete "$INSTDIR\include\CompuCell3D\CompuCell3D\steppables\PDESolvers\DiffusionSolverFE_CPU.h" Delete "$INSTDIR\include\CompuCell3D\CompuCell3D\steppables\PDESolvers\DiffusionSolverFE_CPU_Implicit.h" Delete "$INSTDIR\include\CompuCell3D\CompuCell3D\steppables\PDESolvers\f2c.h" Delete "$INSTDIR\include\CompuCell3D\CompuCell3D\steppables\PDESolvers\FastDiffusionSolver2DFE.h" Delete "$INSTDIR\include\CompuCell3D\CompuCell3D\steppables\PDESolvers\FlexibleDiffusionSolverADE.h" Delete "$INSTDIR\include\CompuCell3D\CompuCell3D\steppables\PDESolvers\FlexibleDiffusionSolverFE.h" Delete "$INSTDIR\include\CompuCell3D\CompuCell3D\steppables\PDESolvers\FlexibleDiffusionSolverFE_GPU.h" Delete "$INSTDIR\include\CompuCell3D\CompuCell3D\steppables\PDESolvers\FlexibleDiffusionSolverFE_GPU.hpp" Delete "$INSTDIR\include\CompuCell3D\CompuCell3D\steppables\PDESolvers\FlexibleDiffusionSolverFE_GPU_Device.h" Delete "$INSTDIR\include\CompuCell3D\CompuCell3D\steppables\PDESolvers\FlexibleReactionDiffusionSolverFE.h" Delete "$INSTDIR\include\CompuCell3D\CompuCell3D\steppables\PDESolvers\GPUSolverBasicData.h" Delete "$INSTDIR\include\CompuCell3D\CompuCell3D\steppables\PDESolvers\GPUSolverParams.h" Delete "$INSTDIR\include\CompuCell3D\CompuCell3D\steppables\PDESolvers\hpppdesolvers.h" Delete "$INSTDIR\include\CompuCell3D\CompuCell3D\steppables\PDESolvers\KernelDiffusionSolver.h" Delete "$INSTDIR\include\CompuCell3D\CompuCell3D\steppables\PDESolvers\MyTime.h" Delete "$INSTDIR\include\CompuCell3D\CompuCell3D\steppables\PDESolvers\PDESolversDLLSpecifier.h" Delete "$INSTDIR\include\CompuCell3D\CompuCell3D\steppables\PDESolvers\PDESolversGPUDllSpecifier.h" Delete "$INSTDIR\include\CompuCell3D\CompuCell3D\steppables\PDESolvers\ReactionDiffusionSolverFE.h" Delete "$INSTDIR\include\CompuCell3D\CompuCell3D\steppables\PDESolvers\ReactionDiffusionSolverFE_SavHog.h" Delete "$INSTDIR\include\CompuCell3D\CompuCell3D\steppables\PDESolvers\SteadyStateDiffusionSolver.h" Delete "$INSTDIR\include\CompuCell3D\CompuCell3D\steppables\PDESolvers\SteadyStateDiffusionSolver2D.h" Delete "$INSTDIR\include\CompuCell3D\CompuCell3D\steppables\PIFDumper\PIFDumper.h" Delete "$INSTDIR\include\CompuCell3D\CompuCell3D\steppables\PIFDumper\PIFDumperDLLSpecifier.h" Delete "$INSTDIR\include\CompuCell3D\CompuCell3D\steppables\PIFInitializer\PIFInitializer.h" Delete "$INSTDIR\include\CompuCell3D\CompuCell3D\steppables\PIFInitializer\PIFInitializerDLLSpecifier.h" Delete "$INSTDIR\include\CompuCell3D\CompuCell3D\steppables\RandomInitializers\FieldBuilder.h" Delete "$INSTDIR\include\CompuCell3D\CompuCell3D\steppables\RandomInitializers\RandomBlobInitializer.h" Delete "$INSTDIR\include\CompuCell3D\CompuCell3D\steppables\RandomInitializers\RandomFieldInitializer.h" Delete "$INSTDIR\include\CompuCell3D\CompuCell3D\steppables\RandomInitializers\RandomFieldInitializerDLLSpecifier.h" Delete "$INSTDIR\include\CompuCell3D\CompuCell3D\steppables\UniformFieldInitializer\UniformFieldInitializer.h" Delete "$INSTDIR\include\CompuCell3D\CompuCell3D\steppables\UniformFieldInitializer\UniformFieldInitializerDLLSpecifier.h" Delete "$INSTDIR\include\CompuCell3D\muParser\muParser.h" Delete "$INSTDIR\include\CompuCell3D\muParser\muParserBase.h" Delete "$INSTDIR\include\CompuCell3D\muParser\muParserBytecode.h" Delete "$INSTDIR\include\CompuCell3D\muParser\muParserCallback.h" Delete "$INSTDIR\include\CompuCell3D\muParser\muParserDef.h" Delete "$INSTDIR\include\CompuCell3D\muParser\muParserDLL.h" Delete "$INSTDIR\include\CompuCell3D\muParser\muParserError.h" Delete "$INSTDIR\include\CompuCell3D\muParser\muParserFixes.h" Delete "$INSTDIR\include\CompuCell3D\muParser\muParserInt.h" Delete "$INSTDIR\include\CompuCell3D\muParser\muParserStack.h" Delete "$INSTDIR\include\CompuCell3D\muParser\muParserTemplateMagic.h" Delete "$INSTDIR\include\CompuCell3D\muParser\muParserTest.h" Delete "$INSTDIR\include\CompuCell3D\muParser\muParserToken.h" Delete "$INSTDIR\include\CompuCell3D\muParser\muParserTokenReader.h" Delete "$INSTDIR\include\CompuCell3D\muParser\ExpressionEvaluator\ExpressionEvaluator.h" Delete "$INSTDIR\include\CompuCell3D\muParser\ExpressionEvaluator\ExpressionEvaluatorDLLSpecifier.h" Delete "$INSTDIR\include\CompuCell3D\PublicUtilities\NumericalUtils.h" Delete "$INSTDIR\include\CompuCell3D\PublicUtilities\ParallelUtilsOpenMP.h" Delete "$INSTDIR\include\CompuCell3D\PublicUtilities\StringUtils.h" Delete "$INSTDIR\include\CompuCell3D\PublicUtilities\Vector3.h" Delete "$INSTDIR\include\CompuCell3D\PublicUtilities\Units\Unit.h" Delete "$INSTDIR\include\CompuCell3D\PublicUtilities\Units\unitParserException.h" Delete "$INSTDIR\include\CompuCell3D\PublicUtilities\Units\unit_calculator.h" Delete "$INSTDIR\include\CompuCell3D\PublicUtilities\Units\unit_calculator_globals.h" Delete "$INSTDIR\include\CompuCell3D\PublicUtilities\Units\unit_calculator_main_lib.h" Delete "$INSTDIR\include\CompuCell3D\Utils\cldeque.h" Delete "$INSTDIR\include\CompuCell3D\Utils\Coordinates3D.h" Delete "$INSTDIR\include\CompuCell3D\XMLUtils\CC3DXMLElement.h" Delete "$INSTDIR\include\CompuCell3D\XMLUtils\CC3DXMLElementWalker.h" Delete "$INSTDIR\include\CompuCell3D\XMLUtils\XMLParserExpatLibDLLSpecifier.h" Delete "$INSTDIR\include\CompuCell3D\XMLUtils\XMLUtilsDLLSpecifier.h" Delete "$INSTDIR\include\pyinterface\PyPlugin\ChangeWatcherPyWrapper.h" Delete "$INSTDIR\include\pyinterface\PyPlugin\EnergyFunctionPyWrapper.h" Delete "$INSTDIR\include\pyinterface\PyPlugin\NeighborFinderParams.h" Delete "$INSTDIR\include\pyinterface\PyPlugin\PyAttributeAdder.h" Delete "$INSTDIR\include\pyinterface\PyPlugin\PyCompuCellObjAdapter.h" Delete "$INSTDIR\include\pyinterface\PyPlugin\PyPlugin.h" Delete "$INSTDIR\include\pyinterface\PyPlugin\StepperPyWrapper.h" Delete "$INSTDIR\include\pyinterface\PyPlugin\TypeChangeWatcherPyWrapper.h" Delete "$INSTDIR\include\sbmlsolver\arithmeticCompiler.h" Delete "$INSTDIR\include\sbmlsolver\ASTIndexNameNode.h" Delete "$INSTDIR\include\sbmlsolver\charBuffer.h" Delete "$INSTDIR\include\sbmlsolver\compiler.h" Delete "$INSTDIR\include\sbmlsolver\cvodeData.h" Delete "$INSTDIR\include\sbmlsolver\cvodeSolver.h" Delete "$INSTDIR\include\sbmlsolver\daeSolver.h" Delete "$INSTDIR\include\sbmlsolver\drawGraph.h" Delete "$INSTDIR\include\sbmlsolver\exportdefs.h" Delete "$INSTDIR\include\sbmlsolver\integratorInstance.h" Delete "$INSTDIR\include\sbmlsolver\integratorSettings.h" Delete "$INSTDIR\include\sbmlsolver\interpol.h" Delete "$INSTDIR\include\sbmlsolver\modelSimplify.h" Delete "$INSTDIR\include\sbmlsolver\nullSolver.h" Delete "$INSTDIR\include\sbmlsolver\odeConstruct.h" Delete "$INSTDIR\include\sbmlsolver\odeModel.h" Delete "$INSTDIR\include\sbmlsolver\odeSolver.h" Delete "$INSTDIR\include\sbmlsolver\processAST.h" Delete "$INSTDIR\include\sbmlsolver\sbml.h" Delete "$INSTDIR\include\sbmlsolver\sbmlResults.h" Delete "$INSTDIR\include\sbmlsolver\sensSolver.h" Delete "$INSTDIR\include\sbmlsolver\solverError.h" Delete "$INSTDIR\include\sbmlsolver\util.h" Delete "$INSTDIR\include\sbmlsolver\variableIndex.h" Delete "$INSTDIR\include\SerializerDE\SerializerDE.h" Delete "$INSTDIR\lib\bionetsolver.lib" Delete "$INSTDIR\lib\CC3DAutomaton.lib" Delete "$INSTDIR\lib\CC3DBasicUtils.lib" Delete "$INSTDIR\lib\CC3DBoundary.lib" Delete "$INSTDIR\lib\CC3DCompuCellLib.lib" Delete "$INSTDIR\lib\CC3DExpressionEvaluator.lib" Delete "$INSTDIR\lib\CC3DField3D.lib" Delete "$INSTDIR\lib\CC3DmuParser.lib" Delete "$INSTDIR\lib\CC3DPotts3D.lib" Delete "$INSTDIR\lib\CC3DPublicUtilities.lib" Delete "$INSTDIR\lib\CC3DUnits.lib" Delete "$INSTDIR\lib\CC3DXMLUtils.lib" Delete "$INSTDIR\lib\ExampleClass.lib" Delete "$INSTDIR\lib\FieldExtractor.lib" Delete "$INSTDIR\lib\PyPlugin.lib" Delete "$INSTDIR\lib\sbmlsolver.lib" Delete "$INSTDIR\lib\SerializerDE.lib" Delete "$INSTDIR\lib\CompuCell3DPlugins\CC3DAdhesionFlex.dll" Delete "$INSTDIR\lib\CompuCell3DPlugins\CC3DAdhesionFlex.lib" Delete "$INSTDIR\lib\CompuCell3DPlugins\CC3DBoundaryMonitor.dll" Delete "$INSTDIR\lib\CompuCell3DPlugins\CC3DBoundaryMonitor.lib" Delete "$INSTDIR\lib\CompuCell3DPlugins\CC3DBoundaryPixelTracker.dll" Delete "$INSTDIR\lib\CompuCell3DPlugins\CC3DBoundaryPixelTracker.lib" Delete "$INSTDIR\lib\CompuCell3DPlugins\CC3DCellOrientation.dll" Delete "$INSTDIR\lib\CompuCell3DPlugins\CC3DCellOrientation.lib" Delete "$INSTDIR\lib\CompuCell3DPlugins\CC3DCellType.dll" Delete "$INSTDIR\lib\CompuCell3DPlugins\CC3DCellType.lib" Delete "$INSTDIR\lib\CompuCell3DPlugins\CC3DCellTypeMonitor.dll" Delete "$INSTDIR\lib\CompuCell3DPlugins\CC3DCellTypeMonitor.lib" Delete "$INSTDIR\lib\CompuCell3DPlugins\CC3DCenterOfMass.dll" Delete "$INSTDIR\lib\CompuCell3DPlugins\CC3DCenterOfMass.lib" Delete "$INSTDIR\lib\CompuCell3DPlugins\CC3DChemotaxis.dll" Delete "$INSTDIR\lib\CompuCell3DPlugins\CC3DChemotaxis.lib" Delete "$INSTDIR\lib\CompuCell3DPlugins\CC3DChemotaxisDicty.dll" Delete "$INSTDIR\lib\CompuCell3DPlugins\CC3DChemotaxisDicty.lib" Delete "$INSTDIR\lib\CompuCell3DPlugins\CC3DChemotaxisSimple.dll" Delete "$INSTDIR\lib\CompuCell3DPlugins\CC3DChemotaxisSimple.lib" Delete "$INSTDIR\lib\CompuCell3DPlugins\CC3DClusterSurface.dll" Delete "$INSTDIR\lib\CompuCell3DPlugins\CC3DClusterSurface.lib" Delete "$INSTDIR\lib\CompuCell3DPlugins\CC3DClusterSurfaceTracker.dll" Delete "$INSTDIR\lib\CompuCell3DPlugins\CC3DClusterSurfaceTracker.lib" Delete "$INSTDIR\lib\CompuCell3DPlugins\CC3DCompartment.dll" Delete "$INSTDIR\lib\CompuCell3DPlugins\CC3DCompartment.lib" Delete "$INSTDIR\lib\CompuCell3DPlugins\CC3DConnectivity.dll" Delete "$INSTDIR\lib\CompuCell3DPlugins\CC3DConnectivity.lib" Delete "$INSTDIR\lib\CompuCell3DPlugins\CC3DConnectivityGlobal.dll" Delete "$INSTDIR\lib\CompuCell3DPlugins\CC3DConnectivityGlobal.lib" Delete "$INSTDIR\lib\CompuCell3DPlugins\CC3DConnectivityLocalFlex.dll" Delete "$INSTDIR\lib\CompuCell3DPlugins\CC3DConnectivityLocalFlex.lib" Delete "$INSTDIR\lib\CompuCell3DPlugins\CC3DContact.dll" Delete "$INSTDIR\lib\CompuCell3DPlugins\CC3DContact.lib" Delete "$INSTDIR\lib\CompuCell3DPlugins\CC3DContactInternal.dll" Delete "$INSTDIR\lib\CompuCell3DPlugins\CC3DContactInternal.lib" Delete "$INSTDIR\lib\CompuCell3DPlugins\CC3DContactLocalFlex.dll" Delete "$INSTDIR\lib\CompuCell3DPlugins\CC3DContactLocalFlex.lib" Delete "$INSTDIR\lib\CompuCell3DPlugins\CC3DContactLocalProduct.dll" Delete "$INSTDIR\lib\CompuCell3DPlugins\CC3DContactLocalProduct.lib" Delete "$INSTDIR\lib\CompuCell3DPlugins\CC3DContactMultiCad.dll" Delete "$INSTDIR\lib\CompuCell3DPlugins\CC3DContactMultiCad.lib" Delete "$INSTDIR\lib\CompuCell3DPlugins\CC3DContactOrientation.dll" Delete "$INSTDIR\lib\CompuCell3DPlugins\CC3DContactOrientation.lib" Delete "$INSTDIR\lib\CompuCell3DPlugins\CC3DConvergentExtension.dll" Delete "$INSTDIR\lib\CompuCell3DPlugins\CC3DConvergentExtension.lib" Delete "$INSTDIR\lib\CompuCell3DPlugins\CC3DCurvature.dll" Delete "$INSTDIR\lib\CompuCell3DPlugins\CC3DCurvature.lib" Delete "$INSTDIR\lib\CompuCell3DPlugins\CC3DElasticity.dll" Delete "$INSTDIR\lib\CompuCell3DPlugins\CC3DElasticity.lib" Delete "$INSTDIR\lib\CompuCell3DPlugins\CC3DElasticityTracker.dll" Delete "$INSTDIR\lib\CompuCell3DPlugins\CC3DElasticityTracker.lib" Delete "$INSTDIR\lib\CompuCell3DPlugins\CC3DExternalPotential.dll" Delete "$INSTDIR\lib\CompuCell3DPlugins\CC3DExternalPotential.lib" Delete "$INSTDIR\lib\CompuCell3DPlugins\CC3DFocalPointPlasticity.dll" Delete "$INSTDIR\lib\CompuCell3DPlugins\CC3DFocalPointPlasticity.lib" Delete "$INSTDIR\lib\CompuCell3DPlugins\CC3DGlobalBoundaryPixelTracker.dll" Delete "$INSTDIR\lib\CompuCell3DPlugins\CC3DGlobalBoundaryPixelTracker.lib" Delete "$INSTDIR\lib\CompuCell3DPlugins\CC3DLengthConstraint.dll" Delete "$INSTDIR\lib\CompuCell3DPlugins\CC3DLengthConstraint.lib" Delete "$INSTDIR\lib\CompuCell3DPlugins\CC3DMitosis.dll" Delete "$INSTDIR\lib\CompuCell3DPlugins\CC3DMitosis.lib" Delete "$INSTDIR\lib\CompuCell3DPlugins\CC3DMomentOfInertia.dll" Delete "$INSTDIR\lib\CompuCell3DPlugins\CC3DMomentOfInertia.lib" Delete "$INSTDIR\lib\CompuCell3DPlugins\CC3DNeighborStick.dll" Delete "$INSTDIR\lib\CompuCell3DPlugins\CC3DNeighborStick.lib" Delete "$INSTDIR\lib\CompuCell3DPlugins\CC3DNeighborTracker.dll" Delete "$INSTDIR\lib\CompuCell3DPlugins\CC3DNeighborTracker.lib" Delete "$INSTDIR\lib\CompuCell3DPlugins\CC3DOrientedContact.dll" Delete "$INSTDIR\lib\CompuCell3DPlugins\CC3DOrientedContact.lib" Delete "$INSTDIR\lib\CompuCell3DPlugins\CC3DPDESolverCaller.dll" Delete "$INSTDIR\lib\CompuCell3DPlugins\CC3DPDESolverCaller.lib" Delete "$INSTDIR\lib\CompuCell3DPlugins\CC3DPixelTracker.dll" Delete "$INSTDIR\lib\CompuCell3DPlugins\CC3DPixelTracker.lib" Delete "$INSTDIR\lib\CompuCell3DPlugins\CC3DPlasticity.dll" Delete "$INSTDIR\lib\CompuCell3DPlugins\CC3DPlasticity.lib" Delete "$INSTDIR\lib\CompuCell3DPlugins\CC3DPlasticityTracker.dll" Delete "$INSTDIR\lib\CompuCell3DPlugins\CC3DPlasticityTracker.lib" Delete "$INSTDIR\lib\CompuCell3DPlugins\CC3DPlayerSettings.dll" Delete "$INSTDIR\lib\CompuCell3DPlugins\CC3DPlayerSettings.lib" Delete "$INSTDIR\lib\CompuCell3DPlugins\CC3DPolarization23.dll" Delete "$INSTDIR\lib\CompuCell3DPlugins\CC3DPolarization23.lib" Delete "$INSTDIR\lib\CompuCell3DPlugins\CC3DPolarizationVector.dll" Delete "$INSTDIR\lib\CompuCell3DPlugins\CC3DPolarizationVector.lib" Delete "$INSTDIR\lib\CompuCell3DPlugins\CC3DRearrangement.dll" Delete "$INSTDIR\lib\CompuCell3DPlugins\CC3DRearrangement.lib" Delete "$INSTDIR\lib\CompuCell3DPlugins\CC3DSecretion.dll" Delete "$INSTDIR\lib\CompuCell3DPlugins\CC3DSecretion.lib" Delete "$INSTDIR\lib\CompuCell3DPlugins\CC3DSimpleClock.dll" Delete "$INSTDIR\lib\CompuCell3DPlugins\CC3DSimpleClock.lib" Delete "$INSTDIR\lib\CompuCell3DPlugins\CC3DStretchness.dll" Delete "$INSTDIR\lib\CompuCell3DPlugins\CC3DStretchness.lib" Delete "$INSTDIR\lib\CompuCell3DPlugins\CC3DSurface.dll" Delete "$INSTDIR\lib\CompuCell3DPlugins\CC3DSurface.lib" Delete "$INSTDIR\lib\CompuCell3DPlugins\CC3DSurfaceTracker.dll" Delete "$INSTDIR\lib\CompuCell3DPlugins\CC3DSurfaceTracker.lib" Delete "$INSTDIR\lib\CompuCell3DPlugins\CC3DTemplate.dll" Delete "$INSTDIR\lib\CompuCell3DPlugins\CC3DTemplate.lib" Delete "$INSTDIR\lib\CompuCell3DPlugins\CC3DViscosity.dll" Delete "$INSTDIR\lib\CompuCell3DPlugins\CC3DViscosity.lib" Delete "$INSTDIR\lib\CompuCell3DPlugins\CC3DVolume.dll" Delete "$INSTDIR\lib\CompuCell3DPlugins\CC3DVolume.lib" Delete "$INSTDIR\lib\CompuCell3DPlugins\CC3DVolumeTracker.dll" Delete "$INSTDIR\lib\CompuCell3DPlugins\CC3DVolumeTracker.lib" Delete "$INSTDIR\lib\CompuCell3DSteppables\CC3DBlobFieldInitializer.dll" Delete "$INSTDIR\lib\CompuCell3DSteppables\CC3DBlobFieldInitializer.lib" Delete "$INSTDIR\lib\CompuCell3DSteppables\CC3DBoxWatcher.dll" Delete "$INSTDIR\lib\CompuCell3DSteppables\CC3DBoxWatcher.lib" Delete "$INSTDIR\lib\CompuCell3DSteppables\CC3DCleaverMeshDumper.dll" Delete "$INSTDIR\lib\CompuCell3DSteppables\CC3DCleaverMeshDumper.lib" Delete "$INSTDIR\lib\CompuCell3DSteppables\CC3DDicty.dll" Delete "$INSTDIR\lib\CompuCell3DSteppables\CC3DDicty.lib" Delete "$INSTDIR\lib\CompuCell3DSteppables\CC3DFoamDataOutput.dll" Delete "$INSTDIR\lib\CompuCell3DSteppables\CC3DFoamDataOutput.lib" Delete "$INSTDIR\lib\CompuCell3DSteppables\CC3DMitosisSteppable.dll" Delete "$INSTDIR\lib\CompuCell3DSteppables\CC3DMitosisSteppable.lib" Delete "$INSTDIR\lib\CompuCell3DSteppables\CC3DObjInitializer.dll" Delete "$INSTDIR\lib\CompuCell3DSteppables\CC3DObjInitializer.lib" Delete "$INSTDIR\lib\CompuCell3DSteppables\CC3DPDESolvers.dll" Delete "$INSTDIR\lib\CompuCell3DSteppables\CC3DPDESolvers.lib" Delete "$INSTDIR\lib\CompuCell3DSteppables\CC3DPIFDumper.dll" Delete "$INSTDIR\lib\CompuCell3DSteppables\CC3DPIFDumper.lib" Delete "$INSTDIR\lib\CompuCell3DSteppables\CC3DPIFInitializer.dll" Delete "$INSTDIR\lib\CompuCell3DSteppables\CC3DPIFInitializer.lib" Delete "$INSTDIR\lib\CompuCell3DSteppables\CC3DRandomInitializers.dll" Delete "$INSTDIR\lib\CompuCell3DSteppables\CC3DRandomInitializers.lib" Delete "$INSTDIR\lib\CompuCell3DSteppables\CC3DUniformFieldInitializer.dll" Delete "$INSTDIR\lib\CompuCell3DSteppables\CC3DUniformFieldInitializer.lib" Delete "$INSTDIR\lib\CompuCell3DSteppables\FlexibleDiffusionSolverFE_OpenCL.dll" Delete "$INSTDIR\lib\CompuCell3DSteppables\FlexibleDiffusionSolverFE_OpenCL.lib" Delete "$INSTDIR\lib\CompuCell3DSteppables\OpenCL\common.cl" Delete "$INSTDIR\lib\CompuCell3DSteppables\OpenCL\DiffusionKernel.cl" Delete "$INSTDIR\lib\CompuCell3DSteppables\OpenCL\GPUBoundaryConditions.h" Delete "$INSTDIR\lib\CompuCell3DSteppables\OpenCL\GPUSolverParams.h" Delete "$INSTDIR\lib\CompuCell3DSteppables\OpenCL\ImplicitMatrix.cl" Delete "$INSTDIR\lib\python\BionetSolverPy.py" Delete "$INSTDIR\lib\python\CC3DXML.py" Delete "$INSTDIR\lib\python\CompuCell.py" Delete "$INSTDIR\lib\python\Example.py" Delete "$INSTDIR\lib\python\Fields.py" Delete "$INSTDIR\lib\python\PlayerPython.py" Delete "$INSTDIR\lib\python\SerializerDEPy.py" Delete "$INSTDIR\lib\python\_BionetSolverPy.pyd" Delete "$INSTDIR\lib\python\_CC3DXML.pyd" Delete "$INSTDIR\lib\python\_CompuCell.pyd" Delete "$INSTDIR\lib\python\_Example.pyd" Delete "$INSTDIR\lib\python\_Fields.pyd" Delete "$INSTDIR\lib\python\_PlayerPython.pyd" Delete "$INSTDIR\lib\python\_SerializerDEPy.pyd" Delete "$INSTDIR\lib\python\roadrunner\roadrunner.py" Delete "$INSTDIR\lib\python\roadrunner\_roadrunner.pyd" Delete "$INSTDIR\lib\python\roadrunner\__init__.py" Delete "$INSTDIR\lib\python\roadrunner\testing\feedback.xml" Delete "$INSTDIR\lib\python\roadrunner\testing\README.txt" Delete "$INSTDIR\lib\python\roadrunner\testing\results_roadRunnerTest_1.txt" Delete "$INSTDIR\lib\python\roadrunner\testing\tester.py" Delete "$INSTDIR\lib\python\roadrunner\testing\testfiles.py" Delete "$INSTDIR\lib\python\roadrunner\testing\test_1.xml" Delete "$INSTDIR\lib\python\roadrunner\testing\__init__.py" Delete "$INSTDIR\lib\python\roadrunner\testing\__main__.py" Delete "$INSTDIR\lib\PythonDeps\sip.exe" Delete "$INSTDIR\lib\PythonDeps\sip.pyd" Delete "$INSTDIR\lib\PythonDeps\PyQt4\phonon.pyd" Delete "$INSTDIR\lib\PythonDeps\PyQt4\pyqtconfig.py" Delete "$INSTDIR\lib\PythonDeps\PyQt4\QAxContainer.pyd" Delete "$INSTDIR\lib\PythonDeps\PyQt4\Qsci.pyd" Delete "$INSTDIR\lib\PythonDeps\PyQt4\Qt.pyd" Delete "$INSTDIR\lib\PythonDeps\PyQt4\QtCore.pyd" Delete "$INSTDIR\lib\PythonDeps\PyQt4\QtDeclarative.pyd" Delete "$INSTDIR\lib\PythonDeps\PyQt4\QtDesigner.pyd" Delete "$INSTDIR\lib\PythonDeps\PyQt4\QtGui.pyd" Delete "$INSTDIR\lib\PythonDeps\PyQt4\QtHelp.pyd" Delete "$INSTDIR\lib\PythonDeps\PyQt4\QtMultimedia.pyd" Delete "$INSTDIR\lib\PythonDeps\PyQt4\QtNetwork.pyd" Delete "$INSTDIR\lib\PythonDeps\PyQt4\QtOpenGL.pyd" Delete "$INSTDIR\lib\PythonDeps\PyQt4\QtScript.pyd" Delete "$INSTDIR\lib\PythonDeps\PyQt4\QtScriptTools.pyd" Delete "$INSTDIR\lib\PythonDeps\PyQt4\QtSql.pyd" Delete "$INSTDIR\lib\PythonDeps\PyQt4\QtSvg.pyd" Delete "$INSTDIR\lib\PythonDeps\PyQt4\QtTest.pyd" Delete "$INSTDIR\lib\PythonDeps\PyQt4\QtWebKit.pyd" Delete "$INSTDIR\lib\PythonDeps\PyQt4\QtXml.pyd" Delete "$INSTDIR\lib\PythonDeps\PyQt4\QtXmlPatterns.pyd" Delete "$INSTDIR\lib\PythonDeps\PyQt4\__init__.py" Delete "$INSTDIR\lib\PythonDeps\PyQt4\Qwt5\anynumpy.py" Delete "$INSTDIR\lib\PythonDeps\PyQt4\Qwt5\grace.py" Delete "$INSTDIR\lib\PythonDeps\PyQt4\Qwt5\ipy_user_conf.py" Delete "$INSTDIR\lib\PythonDeps\PyQt4\Qwt5\iqt.py" Delete "$INSTDIR\lib\PythonDeps\PyQt4\Qwt5\pythonrc.py" Delete "$INSTDIR\lib\PythonDeps\PyQt4\Qwt5\qplt.py" Delete "$INSTDIR\lib\PythonDeps\PyQt4\Qwt5\Qwt.pyd" Delete "$INSTDIR\lib\PythonDeps\PyQt4\Qwt5\_iqt.pyd" Delete "$INSTDIR\lib\PythonDeps\PyQt4\Qwt5\__init__.py" Delete "$INSTDIR\lib\PythonDeps\PyQt4\uic\driver.py" Delete "$INSTDIR\lib\PythonDeps\PyQt4\uic\exceptions.py" Delete "$INSTDIR\lib\PythonDeps\PyQt4\uic\icon_cache.py" Delete "$INSTDIR\lib\PythonDeps\PyQt4\uic\objcreator.py" Delete "$INSTDIR\lib\PythonDeps\PyQt4\uic\properties.py" Delete "$INSTDIR\lib\PythonDeps\PyQt4\uic\pyuic.py" Delete "$INSTDIR\lib\PythonDeps\PyQt4\uic\uiparser.py" Delete "$INSTDIR\lib\PythonDeps\PyQt4\uic\__init__.py" Delete "$INSTDIR\lib\PythonDeps\PyQt4\uic\Compiler\compiler.py" Delete "$INSTDIR\lib\PythonDeps\PyQt4\uic\Compiler\indenter.py" Delete "$INSTDIR\lib\PythonDeps\PyQt4\uic\Compiler\misc.py" Delete "$INSTDIR\lib\PythonDeps\PyQt4\uic\Compiler\proxy_metaclass.py" Delete "$INSTDIR\lib\PythonDeps\PyQt4\uic\Compiler\proxy_type.py" Delete "$INSTDIR\lib\PythonDeps\PyQt4\uic\Compiler\qobjectcreator.py" Delete "$INSTDIR\lib\PythonDeps\PyQt4\uic\Compiler\qtproxies.py" Delete "$INSTDIR\lib\PythonDeps\PyQt4\uic\Compiler\__init__.py" Delete "$INSTDIR\lib\PythonDeps\PyQt4\uic\Loader\loader.py" Delete "$INSTDIR\lib\PythonDeps\PyQt4\uic\Loader\qobjectcreator.py" Delete "$INSTDIR\lib\PythonDeps\PyQt4\uic\Loader\__init__.py" Delete "$INSTDIR\lib\PythonDeps\PyQt4\uic\port_v2\ascii_upper.py" Delete "$INSTDIR\lib\PythonDeps\PyQt4\uic\port_v2\as_string.py" Delete "$INSTDIR\lib\PythonDeps\PyQt4\uic\port_v2\invoke.py" Delete "$INSTDIR\lib\PythonDeps\PyQt4\uic\port_v2\load_plugin.py" Delete "$INSTDIR\lib\PythonDeps\PyQt4\uic\port_v2\proxy_base.py" Delete "$INSTDIR\lib\PythonDeps\PyQt4\uic\port_v2\string_io.py" Delete "$INSTDIR\lib\PythonDeps\PyQt4\uic\port_v2\__init__.py" Delete "$INSTDIR\lib\PythonDeps\PyQt4\uic\port_v3\ascii_upper.py" Delete "$INSTDIR\lib\PythonDeps\PyQt4\uic\port_v3\as_string.py" Delete "$INSTDIR\lib\PythonDeps\PyQt4\uic\port_v3\invoke.py" Delete "$INSTDIR\lib\PythonDeps\PyQt4\uic\port_v3\load_plugin.py" Delete "$INSTDIR\lib\PythonDeps\PyQt4\uic\port_v3\proxy_base.py" Delete "$INSTDIR\lib\PythonDeps\PyQt4\uic\port_v3\string_io.py" Delete "$INSTDIR\lib\PythonDeps\PyQt4\uic\port_v3\__init__.py" Delete "$INSTDIR\lib\PythonDeps\PyQt4\uic\widget-plugins\phonon.py" Delete "$INSTDIR\lib\PythonDeps\PyQt4\uic\widget-plugins\qaxcontainer.py" Delete "$INSTDIR\lib\PythonDeps\PyQt4\uic\widget-plugins\qscintilla.py" Delete "$INSTDIR\lib\PythonDeps\PyQt4\uic\widget-plugins\qtdeclarative.py" Delete "$INSTDIR\lib\PythonDeps\PyQt4\uic\widget-plugins\qtwebkit.py" Delete "$INSTDIR\lib\PythonDeps\PyQt4\uic\widget-plugins\qwt.py" Delete "$INSTDIR\lib\PythonDeps\sip\phonon\abstractaudiooutput.sip" Delete "$INSTDIR\lib\PythonDeps\sip\phonon\abstractvideooutput.sip" Delete "$INSTDIR\lib\PythonDeps\sip\phonon\audiooutput.sip" Delete "$INSTDIR\lib\PythonDeps\sip\phonon\backendcapabilities.sip" Delete "$INSTDIR\lib\PythonDeps\sip\phonon\effect.sip" Delete "$INSTDIR\lib\PythonDeps\sip\phonon\effectparameter.sip" Delete "$INSTDIR\lib\PythonDeps\sip\phonon\effectwidget.sip" Delete "$INSTDIR\lib\PythonDeps\sip\phonon\mediacontroller.sip" Delete "$INSTDIR\lib\PythonDeps\sip\phonon\medianode.sip" Delete "$INSTDIR\lib\PythonDeps\sip\phonon\mediaobject.sip" Delete "$INSTDIR\lib\PythonDeps\sip\phonon\mediasource.sip" Delete "$INSTDIR\lib\PythonDeps\sip\phonon\objectdescription.sip" Delete "$INSTDIR\lib\PythonDeps\sip\phonon\path.sip" Delete "$INSTDIR\lib\PythonDeps\sip\phonon\phononmod.sip" Delete "$INSTDIR\lib\PythonDeps\sip\phonon\phononnamespace.sip" Delete "$INSTDIR\lib\PythonDeps\sip\phonon\seekslider.sip" Delete "$INSTDIR\lib\PythonDeps\sip\phonon\videoplayer.sip" Delete "$INSTDIR\lib\PythonDeps\sip\phonon\videowidget.sip" Delete "$INSTDIR\lib\PythonDeps\sip\phonon\volumeslider.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QAxContainer\qaxbase.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QAxContainer\QAxContainermod.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QAxContainer\qaxobject.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QAxContainer\qaxwidget.sip" Delete "$INSTDIR\lib\PythonDeps\sip\Qsci\qsciabstractapis.sip" Delete "$INSTDIR\lib\PythonDeps\sip\Qsci\qsciapis.sip" Delete "$INSTDIR\lib\PythonDeps\sip\Qsci\qscicommand.sip" Delete "$INSTDIR\lib\PythonDeps\sip\Qsci\qscicommandset.sip" Delete "$INSTDIR\lib\PythonDeps\sip\Qsci\qscidocument.sip" Delete "$INSTDIR\lib\PythonDeps\sip\Qsci\qscilexer.sip" Delete "$INSTDIR\lib\PythonDeps\sip\Qsci\qscilexerbash.sip" Delete "$INSTDIR\lib\PythonDeps\sip\Qsci\qscilexerbatch.sip" Delete "$INSTDIR\lib\PythonDeps\sip\Qsci\qscilexercmake.sip" Delete "$INSTDIR\lib\PythonDeps\sip\Qsci\qscilexercpp.sip" Delete "$INSTDIR\lib\PythonDeps\sip\Qsci\qscilexercsharp.sip" Delete "$INSTDIR\lib\PythonDeps\sip\Qsci\qscilexercss.sip" Delete "$INSTDIR\lib\PythonDeps\sip\Qsci\qscilexercustom.sip" Delete "$INSTDIR\lib\PythonDeps\sip\Qsci\qscilexerd.sip" Delete "$INSTDIR\lib\PythonDeps\sip\Qsci\qscilexerdiff.sip" Delete "$INSTDIR\lib\PythonDeps\sip\Qsci\qscilexerfortran.sip" Delete "$INSTDIR\lib\PythonDeps\sip\Qsci\qscilexerfortran77.sip" Delete "$INSTDIR\lib\PythonDeps\sip\Qsci\qscilexerhtml.sip" Delete "$INSTDIR\lib\PythonDeps\sip\Qsci\qscilexeridl.sip" Delete "$INSTDIR\lib\PythonDeps\sip\Qsci\qscilexerjava.sip" Delete "$INSTDIR\lib\PythonDeps\sip\Qsci\qscilexerjavascript.sip" Delete "$INSTDIR\lib\PythonDeps\sip\Qsci\qscilexerlua.sip" Delete "$INSTDIR\lib\PythonDeps\sip\Qsci\qscilexermakefile.sip" Delete "$INSTDIR\lib\PythonDeps\sip\Qsci\qscilexermatlab.sip" Delete "$INSTDIR\lib\PythonDeps\sip\Qsci\qscilexeroctave.sip" Delete "$INSTDIR\lib\PythonDeps\sip\Qsci\qscilexerpascal.sip" Delete "$INSTDIR\lib\PythonDeps\sip\Qsci\qscilexerperl.sip" Delete "$INSTDIR\lib\PythonDeps\sip\Qsci\qscilexerpostscript.sip" Delete "$INSTDIR\lib\PythonDeps\sip\Qsci\qscilexerpov.sip" Delete "$INSTDIR\lib\PythonDeps\sip\Qsci\qscilexerproperties.sip" Delete "$INSTDIR\lib\PythonDeps\sip\Qsci\qscilexerpython.sip" Delete "$INSTDIR\lib\PythonDeps\sip\Qsci\qscilexerruby.sip" Delete "$INSTDIR\lib\PythonDeps\sip\Qsci\qscilexerspice.sip" Delete "$INSTDIR\lib\PythonDeps\sip\Qsci\qscilexersql.sip" Delete "$INSTDIR\lib\PythonDeps\sip\Qsci\qscilexertcl.sip" Delete "$INSTDIR\lib\PythonDeps\sip\Qsci\qscilexertex.sip" Delete "$INSTDIR\lib\PythonDeps\sip\Qsci\qscilexerverilog.sip" Delete "$INSTDIR\lib\PythonDeps\sip\Qsci\qscilexervhdl.sip" Delete "$INSTDIR\lib\PythonDeps\sip\Qsci\qscilexerxml.sip" Delete "$INSTDIR\lib\PythonDeps\sip\Qsci\qscilexeryaml.sip" Delete "$INSTDIR\lib\PythonDeps\sip\Qsci\qscimacro.sip" Delete "$INSTDIR\lib\PythonDeps\sip\Qsci\qscimod3.sip" Delete "$INSTDIR\lib\PythonDeps\sip\Qsci\qscimod4.sip" Delete "$INSTDIR\lib\PythonDeps\sip\Qsci\qscimod5.sip" Delete "$INSTDIR\lib\PythonDeps\sip\Qsci\qscimodcommon.sip" Delete "$INSTDIR\lib\PythonDeps\sip\Qsci\qsciprinter.sip" Delete "$INSTDIR\lib\PythonDeps\sip\Qsci\qsciscintilla.sip" Delete "$INSTDIR\lib\PythonDeps\sip\Qsci\qsciscintillabase3.sip" Delete "$INSTDIR\lib\PythonDeps\sip\Qsci\qsciscintillabase4.sip" Delete "$INSTDIR\lib\PythonDeps\sip\Qsci\qscistyle.sip" Delete "$INSTDIR\lib\PythonDeps\sip\Qsci\qscistyledtext.sip" Delete "$INSTDIR\lib\PythonDeps\sip\Qt\Qtmod.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtCore\qabstractanimation.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtCore\qabstracteventdispatcher.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtCore\qabstractfileengine.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtCore\qabstractitemmodel.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtCore\qabstractnativeeventfilter.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtCore\qabstractstate.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtCore\qabstracttransition.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtCore\qanimationgroup.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtCore\qbasictimer.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtCore\qbitarray.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtCore\qbuffer.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtCore\qbytearray.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtCore\qbytearraymatcher.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtCore\qchar.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtCore\qcoreapplication.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtCore\qcoreevent.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtCore\qcryptographichash.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtCore\qdatastream.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtCore\qdatetime.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtCore\qdir.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtCore\qdiriterator.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtCore\qeasingcurve.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtCore\qelapsedtimer.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtCore\qeventloop.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtCore\qeventtransition.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtCore\qfile.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtCore\qfiledevice.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtCore\qfileinfo.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtCore\qfilesystemwatcher.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtCore\qfinalstate.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtCore\qfsfileengine.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtCore\qglobal.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtCore\qhash.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtCore\qhistorystate.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtCore\qiodevice.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtCore\qlibrary.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtCore\qlibraryinfo.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtCore\qline.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtCore\qlist.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtCore\qlocale.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtCore\qmap.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtCore\qmargins.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtCore\qmetaobject.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtCore\qmetatype.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtCore\qmimedata.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtCore\qmutex.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtCore\qnamespace.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtCore\qnumeric.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtCore\qobject.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtCore\qobjectcleanuphandler.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtCore\qobjectdefs.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtCore\qpair.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtCore\qparallelanimationgroup.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtCore\qpauseanimation.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtCore\qpluginloader.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtCore\qpoint.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtCore\qprocess.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtCore\qpropertyanimation.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtCore\qpynullvariant.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtCore\qreadwritelock.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtCore\qrect.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtCore\qregexp.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtCore\qresource.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtCore\qrunnable.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtCore\qsemaphore.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtCore\qsequentialanimationgroup.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtCore\qset.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtCore\qsettings.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtCore\qsharedmemory.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtCore\qsignalmapper.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtCore\qsignaltransition.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtCore\qsize.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtCore\qsocketnotifier.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtCore\qstate.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtCore\qstatemachine.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtCore\qstring.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtCore\qstringlist.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtCore\qstringmatcher.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtCore\qsystemsemaphore.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtCore\QtCoremod.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtCore\qtemporaryfile.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtCore\qtextboundaryfinder.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtCore\qtextcodec.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtCore\qtextstream.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtCore\qthread.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtCore\qthreadpool.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtCore\qtimeline.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtCore\qtimer.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtCore\qtranslator.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtCore\qurl.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtCore\qurlquery.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtCore\quuid.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtCore\qvariant.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtCore\qvariantanimation.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtCore\qvector.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtCore\qwaitcondition.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtCore\qwineventnotifier.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtCore\qxmlstream.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtDeclarative\qdeclarativecomponent.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtDeclarative\qdeclarativecontext.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtDeclarative\qdeclarativeengine.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtDeclarative\qdeclarativeerror.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtDeclarative\qdeclarativeexpression.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtDeclarative\qdeclarativeextensionplugin.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtDeclarative\qdeclarativeimageprovider.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtDeclarative\qdeclarativeitem.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtDeclarative\qdeclarativelist.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtDeclarative\qdeclarativenetworkaccessmanagerfactory.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtDeclarative\qdeclarativeparserstatus.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtDeclarative\qdeclarativeproperty.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtDeclarative\qdeclarativepropertymap.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtDeclarative\qdeclarativepropertyvaluesource.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtDeclarative\qdeclarativescriptstring.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtDeclarative\qdeclarativeview.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtDeclarative\qpydeclarativelistproperty.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtDeclarative\qpydeclarativepropertyvaluesource.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtDeclarative\QtDeclarativemod.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtDesigner\abstractactioneditor.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtDesigner\abstractformbuilder.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtDesigner\abstractformeditor.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtDesigner\abstractformwindow.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtDesigner\abstractformwindowcursor.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtDesigner\abstractformwindowmanager.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtDesigner\abstractobjectinspector.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtDesigner\abstractpropertyeditor.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtDesigner\abstractwidgetbox.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtDesigner\container.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtDesigner\customwidget.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtDesigner\default_extensionfactory.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtDesigner\extension.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtDesigner\formbuilder.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtDesigner\membersheet.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtDesigner\propertysheet.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtDesigner\qextensionmanager.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtDesigner\qpydesignercontainerextension.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtDesigner\qpydesignercustomwidgetcollectionplugin.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtDesigner\qpydesignercustomwidgetplugin.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtDesigner\qpydesignermembersheetextension.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtDesigner\qpydesignerpropertysheetextension.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtDesigner\qpydesignertaskmenuextension.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtDesigner\QtDesignermod.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtDesigner\taskmenu.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtGui\qabstractbutton.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtGui\qabstractitemdelegate.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtGui\qabstractitemview.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtGui\qabstractprintdialog.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtGui\qabstractproxymodel.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtGui\qabstractscrollarea.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtGui\qabstractslider.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtGui\qabstractspinbox.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtGui\qabstracttextdocumentlayout.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtGui\qaction.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtGui\qactiongroup.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtGui\qapplication.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtGui\qbitmap.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtGui\qboxlayout.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtGui\qbrush.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtGui\qbuttongroup.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtGui\qcalendarwidget.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtGui\qcheckbox.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtGui\qclipboard.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtGui\qcolor.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtGui\qcolordialog.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtGui\qcolumnview.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtGui\qcombobox.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtGui\qcommandlinkbutton.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtGui\qcommonstyle.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtGui\qcompleter.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtGui\qcursor.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtGui\qdatawidgetmapper.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtGui\qdatetimeedit.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtGui\qdesktopservices.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtGui\qdesktopwidget.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtGui\qdial.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtGui\qdialog.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtGui\qdialogbuttonbox.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtGui\qdirmodel.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtGui\qdockwidget.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtGui\qdrag.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtGui\qdrawutil.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtGui\qerrormessage.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtGui\qevent.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtGui\qfiledialog.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtGui\qfileiconprovider.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtGui\qfilesystemmodel.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtGui\qfocusframe.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtGui\qfont.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtGui\qfontcombobox.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtGui\qfontdatabase.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtGui\qfontdialog.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtGui\qfontinfo.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtGui\qfontmetrics.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtGui\qformlayout.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtGui\qframe.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtGui\qgenericmatrix.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtGui\qgesture.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtGui\qgesturerecognizer.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtGui\qglyphrun.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtGui\qgraphicsanchorlayout.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtGui\qgraphicseffect.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtGui\qgraphicsgridlayout.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtGui\qgraphicsitem.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtGui\qgraphicsitemanimation.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtGui\qgraphicslayout.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtGui\qgraphicslayoutitem.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtGui\qgraphicslinearlayout.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtGui\qgraphicsproxywidget.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtGui\qgraphicsscene.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtGui\qgraphicssceneevent.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtGui\qgraphicstransform.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtGui\qgraphicsview.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtGui\qgraphicswidget.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtGui\qgridlayout.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtGui\qgroupbox.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtGui\qguiapplication.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtGui\qheaderview.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtGui\qicon.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtGui\qiconengine.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtGui\qidentityproxymodel.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtGui\qimage.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtGui\qimageiohandler.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtGui\qimagereader.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtGui\qimagewriter.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtGui\qinputcontext.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtGui\qinputcontextfactory.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtGui\qinputdialog.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtGui\qitemdelegate.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtGui\qitemeditorfactory.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtGui\qitemselectionmodel.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtGui\qkeyeventtransition.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtGui\qkeysequence.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtGui\qlabel.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtGui\qlayout.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtGui\qlayoutitem.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtGui\qlcdnumber.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtGui\qlineedit.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtGui\qlistview.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtGui\qlistwidget.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtGui\qmainwindow.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtGui\qmatrix.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtGui\qmatrix4x4.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtGui\qmdiarea.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtGui\qmdisubwindow.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtGui\qmenu.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtGui\qmenubar.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtGui\qmessagebox.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtGui\qmime.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtGui\qmouseeventtransition.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtGui\qmovie.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtGui\qpagedpaintdevice.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtGui\qpagesetupdialog.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtGui\qpaintdevice.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtGui\qpaintengine.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtGui\qpainter.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtGui\qpainterpath.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtGui\qpalette.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtGui\qpen.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtGui\qpicture.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtGui\qpixmap.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtGui\qpixmapcache.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtGui\qplaintextedit.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtGui\qpolygon.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtGui\qprintdialog.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtGui\qprintengine.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtGui\qprinter.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtGui\qprinterinfo.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtGui\qprintpreviewdialog.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtGui\qprintpreviewwidget.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtGui\qprogressbar.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtGui\qprogressdialog.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtGui\qproxymodel.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtGui\qpushbutton.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtGui\qpytextobject.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtGui\qquaternion.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtGui\qradiobutton.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtGui\qrawfont.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtGui\qregion.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtGui\qrgb.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtGui\qrubberband.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtGui\qscreen.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtGui\qscrollarea.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtGui\qscrollbar.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtGui\qsessionmanager.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtGui\qshortcut.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtGui\qsizegrip.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtGui\qsizepolicy.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtGui\qslider.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtGui\qsortfilterproxymodel.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtGui\qsound.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtGui\qspinbox.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtGui\qsplashscreen.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtGui\qsplitter.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtGui\qstackedlayout.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtGui\qstackedwidget.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtGui\qstandarditemmodel.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtGui\qstatictext.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtGui\qstatusbar.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtGui\qstringlistmodel.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtGui\qstyle.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtGui\qstyleditemdelegate.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtGui\qstylefactory.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtGui\qstyleoption.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtGui\qstylepainter.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtGui\qsyntaxhighlighter.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtGui\qsystemtrayicon.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtGui\qtabbar.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtGui\qtableview.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtGui\qtablewidget.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtGui\qtabwidget.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtGui\qtextbrowser.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtGui\qtextcursor.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtGui\qtextdocument.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtGui\qtextdocumentfragment.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtGui\qtextdocumentwriter.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtGui\qtextedit.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtGui\qtextformat.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtGui\qtextlayout.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtGui\qtextlist.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtGui\qtextobject.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtGui\qtextoption.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtGui\qtexttable.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtGui\QtGuimod.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtGui\qtoolbar.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtGui\qtoolbox.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtGui\qtoolbutton.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtGui\qtooltip.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtGui\qtouchdevice.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtGui\qtransform.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtGui\qtreeview.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtGui\qtreewidget.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtGui\qtreewidgetitemiterator.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtGui\qundogroup.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtGui\qundostack.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtGui\qundoview.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtGui\qvalidator.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtGui\qvector2d.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtGui\qvector3d.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtGui\qvector4d.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtGui\qwhatsthis.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtGui\qwidget.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtGui\qwidgetaction.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtGui\qwindowdefs.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtGui\qwizard.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtGui\qworkspace.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtGui\qx11embed_x11.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtGui\qx11info_x11.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtHelp\qhelpcontentwidget.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtHelp\qhelpengine.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtHelp\qhelpenginecore.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtHelp\qhelpindexwidget.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtHelp\qhelpsearchengine.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtHelp\qhelpsearchquerywidget.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtHelp\qhelpsearchresultwidget.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtHelp\QtHelpmod.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtMultimedia\qabstractvideobuffer.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtMultimedia\qabstractvideosurface.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtMultimedia\qaudio.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtMultimedia\qaudiodeviceinfo.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtMultimedia\qaudioformat.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtMultimedia\qaudioinput.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtMultimedia\qaudiooutput.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtMultimedia\QtMultimediamod.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtMultimedia\qvideoframe.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtMultimedia\qvideosurfaceformat.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtNetwork\qabstractnetworkcache.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtNetwork\qabstractsocket.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtNetwork\qauthenticator.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtNetwork\qdnslookup.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtNetwork\qftp.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtNetwork\qhostaddress.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtNetwork\qhostinfo.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtNetwork\qhttp.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtNetwork\qhttpmultipart.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtNetwork\qlocalserver.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtNetwork\qlocalsocket.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtNetwork\qnetworkaccessmanager.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtNetwork\qnetworkconfigmanager.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtNetwork\qnetworkconfiguration.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtNetwork\qnetworkcookie.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtNetwork\qnetworkcookiejar.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtNetwork\qnetworkdiskcache.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtNetwork\qnetworkinterface.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtNetwork\qnetworkproxy.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtNetwork\qnetworkreply.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtNetwork\qnetworkrequest.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtNetwork\qnetworksession.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtNetwork\qssl.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtNetwork\qsslcertificate.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtNetwork\qsslcertificateextension.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtNetwork\qsslcipher.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtNetwork\qsslconfiguration.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtNetwork\qsslerror.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtNetwork\qsslkey.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtNetwork\qsslsocket.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtNetwork\qtcpserver.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtNetwork\qtcpsocket.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtNetwork\QtNetworkmod.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtNetwork\qudpsocket.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtNetwork\qurlinfo.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtOpenGL\opengl_types.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtOpenGL\qgl.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtOpenGL\qglbuffer.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtOpenGL\qglcolormap.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtOpenGL\qglframebufferobject.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtOpenGL\qglpixelbuffer.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtOpenGL\qglshaderprogram.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtOpenGL\QtOpenGLmod.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtScript\qscriptclass.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtScript\qscriptclasspropertyiterator.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtScript\qscriptcontext.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtScript\qscriptcontextinfo.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtScript\qscriptengine.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtScript\qscriptengineagent.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtScript\qscriptstring.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtScript\qscriptvalue.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtScript\qscriptvalueiterator.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtScript\QtScriptmod.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtScriptTools\qscriptenginedebugger.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtScriptTools\QtScriptToolsmod.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtSql\qsql.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtSql\qsqldatabase.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtSql\qsqldriver.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtSql\qsqlerror.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtSql\qsqlfield.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtSql\qsqlindex.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtSql\qsqlquery.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtSql\qsqlquerymodel.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtSql\qsqlrecord.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtSql\qsqlrelationaldelegate.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtSql\qsqlrelationaltablemodel.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtSql\qsqlresult.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtSql\qsqltablemodel.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtSql\QtSqlmod.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtSvg\qgraphicssvgitem.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtSvg\qsvggenerator.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtSvg\qsvgrenderer.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtSvg\qsvgwidget.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtSvg\QtSvgmod.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtTest\qtestcase.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtTest\qtestkeyboard.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtTest\qtestmouse.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtTest\qtestsystem.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtTest\QtTestmod.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtWebKit\qgraphicswebview.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtWebKit\QtWebKitmod.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtWebKit\qwebdatabase.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtWebKit\qwebelement.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtWebKit\qwebframe.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtWebKit\qwebhistory.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtWebKit\qwebhistoryinterface.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtWebKit\qwebinspector.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtWebKit\qwebkitglobal.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtWebKit\qwebkitversion.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtWebKit\qwebpage.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtWebKit\qwebpluginfactory.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtWebKit\qwebsecurityorigin.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtWebKit\qwebsettings.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtWebKit\qwebview.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtXml\qdom.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtXml\QtXmlmod.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtXml\qxml.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtXml\qxmlstream.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtXmlPatterns\qabstractmessagehandler.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtXmlPatterns\qabstracturiresolver.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtXmlPatterns\qabstractxmlnodemodel.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtXmlPatterns\qabstractxmlreceiver.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtXmlPatterns\qsimplexmlnodemodel.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtXmlPatterns\qsourcelocation.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtXmlPatterns\QtXmlPatternsmod.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtXmlPatterns\qxmlformatter.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtXmlPatterns\qxmlname.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtXmlPatterns\qxmlnamepool.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtXmlPatterns\qxmlquery.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtXmlPatterns\qxmlresultitems.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtXmlPatterns\qxmlschema.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtXmlPatterns\qxmlschemavalidator.sip" Delete "$INSTDIR\lib\PythonDeps\sip\QtXmlPatterns\qxmlserializer.sip" Delete "$INSTDIR\lib\PythonDeps\sip\Qwt5\QwtArrayDouble.sip" Delete "$INSTDIR\lib\PythonDeps\sip\Qwt5\QwtArrayInt.sip" Delete "$INSTDIR\lib\PythonDeps\sip\Qwt5\QwtArrayQwtDoubleInterval.sip" Delete "$INSTDIR\lib\PythonDeps\sip\Qwt5\QwtArrayQwtDoublePoint.sip" Delete "$INSTDIR\lib\PythonDeps\sip\Qwt5\QwtList.sip" Delete "$INSTDIR\lib\PythonDeps\sip\Qwt5\QwtMap.sip" Delete "$INSTDIR\lib\PythonDeps\sip\Qwt5\QwtModule.sip" Delete "$INSTDIR\lib\PythonDeps\sip\Qwt5\QwtStack.sip" Delete "$INSTDIR\lib\PythonDeps\sip\Qwt5\QwtTypes.sip" Delete "$INSTDIR\lib\PythonDeps\sip\Qwt5\qwt_abstract_scale.sip" Delete "$INSTDIR\lib\PythonDeps\sip\Qwt5\qwt_abstract_scale_draw.sip" Delete "$INSTDIR\lib\PythonDeps\sip\Qwt5\qwt_abstract_slider.sip" Delete "$INSTDIR\lib\PythonDeps\sip\Qwt5\qwt_analog_clock.sip" Delete "$INSTDIR\lib\PythonDeps\sip\Qwt5\qwt_arrow_button.sip" Delete "$INSTDIR\lib\PythonDeps\sip\Qwt5\qwt_clipper.sip" Delete "$INSTDIR\lib\PythonDeps\sip\Qwt5\qwt_color_map.sip" Delete "$INSTDIR\lib\PythonDeps\sip\Qwt5\qwt_compass.sip" Delete "$INSTDIR\lib\PythonDeps\sip\Qwt5\qwt_compass_rose.sip" Delete "$INSTDIR\lib\PythonDeps\sip\Qwt5\qwt_counter.sip" Delete "$INSTDIR\lib\PythonDeps\sip\Qwt5\qwt_curve_fitter.sip" Delete "$INSTDIR\lib\PythonDeps\sip\Qwt5\qwt_data.sip" Delete "$INSTDIR\lib\PythonDeps\sip\Qwt5\qwt_dial.sip" Delete "$INSTDIR\lib\PythonDeps\sip\Qwt5\qwt_dial_needle.sip" Delete "$INSTDIR\lib\PythonDeps\sip\Qwt5\qwt_double_interval.sip" Delete "$INSTDIR\lib\PythonDeps\sip\Qwt5\qwt_double_range.sip" Delete "$INSTDIR\lib\PythonDeps\sip\Qwt5\qwt_dyngrid_layout.sip" Delete "$INSTDIR\lib\PythonDeps\sip\Qwt5\qwt_event_pattern.sip" Delete "$INSTDIR\lib\PythonDeps\sip\Qwt5\qwt_interval_data.sip" Delete "$INSTDIR\lib\PythonDeps\sip\Qwt5\qwt_knob.sip" Delete "$INSTDIR\lib\PythonDeps\sip\Qwt5\qwt_layout_metrics.sip" Delete "$INSTDIR\lib\PythonDeps\sip\Qwt5\qwt_legend.sip" Delete "$INSTDIR\lib\PythonDeps\sip\Qwt5\qwt_legend_item.sip" Delete "$INSTDIR\lib\PythonDeps\sip\Qwt5\qwt_legend_itemmanager.sip" Delete "$INSTDIR\lib\PythonDeps\sip\Qwt5\qwt_magnifier.sip" Delete "$INSTDIR\lib\PythonDeps\sip\Qwt5\qwt_painter.sip" Delete "$INSTDIR\lib\PythonDeps\sip\Qwt5\qwt_panner.sip" Delete "$INSTDIR\lib\PythonDeps\sip\Qwt5\qwt_picker.sip" Delete "$INSTDIR\lib\PythonDeps\sip\Qwt5\qwt_picker_machine.sip" Delete "$INSTDIR\lib\PythonDeps\sip\Qwt5\qwt_plot.sip" Delete "$INSTDIR\lib\PythonDeps\sip\Qwt5\qwt_plot_canvas.sip" Delete "$INSTDIR\lib\PythonDeps\sip\Qwt5\qwt_plot_curve.sip" Delete "$INSTDIR\lib\PythonDeps\sip\Qwt5\qwt_plot_dict.sip" Delete "$INSTDIR\lib\PythonDeps\sip\Qwt5\qwt_plot_grid.sip" Delete "$INSTDIR\lib\PythonDeps\sip\Qwt5\qwt_plot_item.sip" Delete "$INSTDIR\lib\PythonDeps\sip\Qwt5\qwt_plot_layout.sip" Delete "$INSTDIR\lib\PythonDeps\sip\Qwt5\qwt_plot_magnifier.sip" Delete "$INSTDIR\lib\PythonDeps\sip\Qwt5\qwt_plot_marker.sip" Delete "$INSTDIR\lib\PythonDeps\sip\Qwt5\qwt_plot_panner.sip" Delete "$INSTDIR\lib\PythonDeps\sip\Qwt5\qwt_plot_picker.sip" Delete "$INSTDIR\lib\PythonDeps\sip\Qwt5\qwt_plot_printfilter.sip" Delete "$INSTDIR\lib\PythonDeps\sip\Qwt5\qwt_plot_rasteritem.sip" Delete "$INSTDIR\lib\PythonDeps\sip\Qwt5\qwt_plot_rescaler.sip" Delete "$INSTDIR\lib\PythonDeps\sip\Qwt5\qwt_plot_scaleitem.sip" Delete "$INSTDIR\lib\PythonDeps\sip\Qwt5\qwt_plot_spectrogram.sip" Delete "$INSTDIR\lib\PythonDeps\sip\Qwt5\qwt_plot_svgitem.sip" Delete "$INSTDIR\lib\PythonDeps\sip\Qwt5\qwt_plot_zoomer.sip" Delete "$INSTDIR\lib\PythonDeps\sip\Qwt5\qwt_raster_data.sip" Delete "$INSTDIR\lib\PythonDeps\sip\Qwt5\qwt_rect.sip" Delete "$INSTDIR\lib\PythonDeps\sip\Qwt5\qwt_round_scale_draw.sip" Delete "$INSTDIR\lib\PythonDeps\sip\Qwt5\qwt_scale_div.sip" Delete "$INSTDIR\lib\PythonDeps\sip\Qwt5\qwt_scale_draw.sip" Delete "$INSTDIR\lib\PythonDeps\sip\Qwt5\qwt_scale_engine.sip" Delete "$INSTDIR\lib\PythonDeps\sip\Qwt5\qwt_scale_map.sip" Delete "$INSTDIR\lib\PythonDeps\sip\Qwt5\qwt_scale_widget.sip" Delete "$INSTDIR\lib\PythonDeps\sip\Qwt5\qwt_slider.sip" Delete "$INSTDIR\lib\PythonDeps\sip\Qwt5\qwt_spline.sip" Delete "$INSTDIR\lib\PythonDeps\sip\Qwt5\qwt_symbol.sip" Delete "$INSTDIR\lib\PythonDeps\sip\Qwt5\qwt_text.sip" Delete "$INSTDIR\lib\PythonDeps\sip\Qwt5\qwt_text_engine.sip" Delete "$INSTDIR\lib\PythonDeps\sip\Qwt5\qwt_text_label.sip" Delete "$INSTDIR\lib\PythonDeps\sip\Qwt5\qwt_thermo.sip" Delete "$INSTDIR\lib\PythonDeps\sip\Qwt5\qwt_wheel.sip" Delete "$INSTDIR\lib\PythonDeps\vtk\charts.py" Delete "$INSTDIR\lib\PythonDeps\vtk\chemistry.py" Delete "$INSTDIR\lib\PythonDeps\vtk\common.py" Delete "$INSTDIR\lib\PythonDeps\vtk\filtering.py" Delete "$INSTDIR\lib\PythonDeps\vtk\genericfiltering.py" Delete "$INSTDIR\lib\PythonDeps\vtk\geovis.py" Delete "$INSTDIR\lib\PythonDeps\vtk\graphics.py" Delete "$INSTDIR\lib\PythonDeps\vtk\hybrid.py" Delete "$INSTDIR\lib\PythonDeps\vtk\imaging.py" Delete "$INSTDIR\lib\PythonDeps\vtk\infovis.py" Delete "$INSTDIR\lib\PythonDeps\vtk\io.py" Delete "$INSTDIR\lib\PythonDeps\vtk\parallel.py" Delete "$INSTDIR\lib\PythonDeps\vtk\qvtk.py" Delete "$INSTDIR\lib\PythonDeps\vtk\rendering.py" Delete "$INSTDIR\lib\PythonDeps\vtk\required.py" Delete "$INSTDIR\lib\PythonDeps\vtk\textanalysis.py" Delete "$INSTDIR\lib\PythonDeps\vtk\views.py" Delete "$INSTDIR\lib\PythonDeps\vtk\volumerendering.py" Delete "$INSTDIR\lib\PythonDeps\vtk\vtkChartsPython.pyd" Delete "$INSTDIR\lib\PythonDeps\vtk\vtkCommonPython.pyd" Delete "$INSTDIR\lib\PythonDeps\vtk\vtkFilteringPython.pyd" Delete "$INSTDIR\lib\PythonDeps\vtk\vtkGenericFilteringPython.pyd" Delete "$INSTDIR\lib\PythonDeps\vtk\vtkGeovisPython.pyd" Delete "$INSTDIR\lib\PythonDeps\vtk\vtkGraphicsPython.pyd" Delete "$INSTDIR\lib\PythonDeps\vtk\vtkHybridPython.pyd" Delete "$INSTDIR\lib\PythonDeps\vtk\vtkImagingPython.pyd" Delete "$INSTDIR\lib\PythonDeps\vtk\vtkInfovisPython.pyd" Delete "$INSTDIR\lib\PythonDeps\vtk\vtkIOPython.pyd" Delete "$INSTDIR\lib\PythonDeps\vtk\vtkRenderingPython.pyd" Delete "$INSTDIR\lib\PythonDeps\vtk\vtkViewsPython.pyd" Delete "$INSTDIR\lib\PythonDeps\vtk\vtkVolumeRenderingPython.pyd" Delete "$INSTDIR\lib\PythonDeps\vtk\vtkWidgetsPython.pyd" Delete "$INSTDIR\lib\PythonDeps\vtk\widgets.py" Delete "$INSTDIR\lib\PythonDeps\vtk\__helper.py" Delete "$INSTDIR\lib\PythonDeps\vtk\__init__.py" Delete "$INSTDIR\lib\PythonDeps\vtk\gtk\GtkGLExtVTKRenderWindow.py" Delete "$INSTDIR\lib\PythonDeps\vtk\gtk\GtkGLExtVTKRenderWindowInteractor.py" Delete "$INSTDIR\lib\PythonDeps\vtk\gtk\GtkVTKRenderWindow.py" Delete "$INSTDIR\lib\PythonDeps\vtk\gtk\GtkVTKRenderWindowInteractor.py" Delete "$INSTDIR\lib\PythonDeps\vtk\gtk\__init__.py" Delete "$INSTDIR\lib\PythonDeps\vtk\qt\QVTKRenderWidget.py" Delete "$INSTDIR\lib\PythonDeps\vtk\qt\QVTKRenderWindowInteractor.py" Delete "$INSTDIR\lib\PythonDeps\vtk\qt\__init__.py" Delete "$INSTDIR\lib\PythonDeps\vtk\qt4\QVTKRenderWindowInteractor.py" Delete "$INSTDIR\lib\PythonDeps\vtk\qt4\__init__.py" Delete "$INSTDIR\lib\PythonDeps\vtk\test\BlackBox.py" Delete "$INSTDIR\lib\PythonDeps\vtk\test\Testing.py" Delete "$INSTDIR\lib\PythonDeps\vtk\test\__init__.py" Delete "$INSTDIR\lib\PythonDeps\vtk\tk\vtkLoadPythonTkWidgets.py" Delete "$INSTDIR\lib\PythonDeps\vtk\tk\vtkTkImageViewerWidget.py" Delete "$INSTDIR\lib\PythonDeps\vtk\tk\vtkTkPhotoImage.py" Delete "$INSTDIR\lib\PythonDeps\vtk\tk\vtkTkRenderWidget.py" Delete "$INSTDIR\lib\PythonDeps\vtk\tk\vtkTkRenderWindowInteractor.py" Delete "$INSTDIR\lib\PythonDeps\vtk\tk\__init__.py" Delete "$INSTDIR\lib\PythonDeps\vtk\util\colors.py" Delete "$INSTDIR\lib\PythonDeps\vtk\util\misc.py" Delete "$INSTDIR\lib\PythonDeps\vtk\util\numpy_support.py" Delete "$INSTDIR\lib\PythonDeps\vtk\util\vtkConstants.py" Delete "$INSTDIR\lib\PythonDeps\vtk\util\vtkImageExportToArray.py" Delete "$INSTDIR\lib\PythonDeps\vtk\util\vtkImageImportFromArray.py" Delete "$INSTDIR\lib\PythonDeps\vtk\util\vtkMethodParser.py" Delete "$INSTDIR\lib\PythonDeps\vtk\util\vtkVariant.py" Delete "$INSTDIR\lib\PythonDeps\vtk\util\__init__.py" Delete "$INSTDIR\lib\PythonDeps\vtk\wx\wxVTKRenderWindow.py" Delete "$INSTDIR\lib\PythonDeps\vtk\wx\wxVTKRenderWindowInteractor.py" Delete "$INSTDIR\lib\PythonDeps\vtk\wx\__init__.py" Delete "$INSTDIR\player\compucell3d.pyw" Delete "$INSTDIR\player\CompuCellPythonSimulationCML.py" Delete "$INSTDIR\player\plugins.txt" Delete "$INSTDIR\player\Configuration\ConfigurationDialog.py" Delete "$INSTDIR\player\Configuration\ConfigurationPageBase.py" Delete "$INSTDIR\player\Configuration\Settings.py" Delete "$INSTDIR\player\Configuration\ui_configurationdlg.py" Delete "$INSTDIR\player\Configuration\__init__.py" Delete "$INSTDIR\player\CQt\CQApplication.py" Delete "$INSTDIR\player\CQt\__init__.py" Delete "$INSTDIR\player\CustomGui\CTabWidget.py" Delete "$INSTDIR\player\CustomGui\__init__.py" Delete "$INSTDIR\player\Graphics\CameraSettings.py" Delete "$INSTDIR\player\Graphics\CustomActorsStorage.py" Delete "$INSTDIR\player\Graphics\DrawingParameters.py" Delete "$INSTDIR\player\Graphics\GraphicsFrameWidget.py" Delete "$INSTDIR\player\Graphics\MVCDrawModel2D.py" Delete "$INSTDIR\player\Graphics\MVCDrawModel3D.py" Delete "$INSTDIR\player\Graphics\MVCDrawModelBase.py" Delete "$INSTDIR\player\Graphics\MVCDrawView2D.py" Delete "$INSTDIR\player\Graphics\MVCDrawView3D.py" Delete "$INSTDIR\player\Graphics\MVCDrawViewBase.py" Delete "$INSTDIR\player\Graphics\PlotFrameWidget.py" Delete "$INSTDIR\player\Graphics\PlotFrameWidgetVTK.py" Delete "$INSTDIR\player\Graphics\__init__.py" Delete "$INSTDIR\player\icons\cc3d_64x64_logo.png" Delete "$INSTDIR\player\icons\cellcolors.png" Delete "$INSTDIR\player\icons\close.png" Delete "$INSTDIR\player\icons\colormap.png" Delete "$INSTDIR\player\icons\config.png" Delete "$INSTDIR\player\icons\dicty.png" Delete "$INSTDIR\player\icons\exit.png" Delete "$INSTDIR\player\icons\exit2.png" Delete "$INSTDIR\player\icons\fileopen.png" Delete "$INSTDIR\player\icons\frequency.png" Delete "$INSTDIR\player\icons\goto.png" Delete "$INSTDIR\player\icons\help.png" Delete "$INSTDIR\player\icons\kcmkwm.png" Delete "$INSTDIR\player\icons\man.png" Delete "$INSTDIR\player\icons\open.png" Delete "$INSTDIR\player\icons\pause.png" Delete "$INSTDIR\player\icons\play.png" Delete "$INSTDIR\player\icons\plot.png" Delete "$INSTDIR\player\icons\plugin.png" Delete "$INSTDIR\player\icons\save-simulation.png" Delete "$INSTDIR\player\icons\save.png" Delete "$INSTDIR\player\icons\screenshot.png" Delete "$INSTDIR\player\icons\screenshots_open.png" Delete "$INSTDIR\player\icons\screenshots_save.png" Delete "$INSTDIR\player\icons\screenshots_save_alt.png" Delete "$INSTDIR\player\icons\script.png" Delete "$INSTDIR\player\icons\sim.png" Delete "$INSTDIR\player\icons\step.png" Delete "$INSTDIR\player\icons\stop.png" Delete "$INSTDIR\player\icons\threedview.png" Delete "$INSTDIR\player\icons\toolbars.png" Delete "$INSTDIR\player\icons\twedit-icon.png" Delete "$INSTDIR\player\icons\vectorfield.png" Delete "$INSTDIR\player\icons\whatsThis.png" Delete "$INSTDIR\player\icons\window_new.png" Delete "$INSTDIR\player\icons\zoomIn.png" Delete "$INSTDIR\player\icons\zoomOut.png" Delete "$INSTDIR\player\Messaging\__init__.py" Delete "$INSTDIR\player\PluginManager\PluginManager.py" Delete "$INSTDIR\player\Plugins\__init__.py" Delete "$INSTDIR\player\Plugins\ViewManagerPlugins\PlotManager.py" Delete "$INSTDIR\player\Plugins\ViewManagerPlugins\PlotManagerSetup.py" Delete "$INSTDIR\player\Plugins\ViewManagerPlugins\PlotManagerSetupVTK.py" Delete "$INSTDIR\player\Plugins\ViewManagerPlugins\PlotManagerVTK.py" Delete "$INSTDIR\player\Plugins\ViewManagerPlugins\RollbackImporter.py" Delete "$INSTDIR\player\Plugins\ViewManagerPlugins\ScreenshotManager.py" Delete "$INSTDIR\player\Plugins\ViewManagerPlugins\SimpleTabView.py" Delete "$INSTDIR\player\Plugins\ViewManagerPlugins\__init__.py" Delete "$INSTDIR\player\Simulation\CMLResultReader.py" Delete "$INSTDIR\player\Simulation\SimulationThread.py" Delete "$INSTDIR\player\Simulation\__init__.py" Delete "$INSTDIR\player\UI\CC3DSender.py" Delete "$INSTDIR\player\UI\Console.py" Delete "$INSTDIR\player\UI\CPlugins.py" Delete "$INSTDIR\player\UI\ErrorConsole.py" Delete "$INSTDIR\player\UI\LatticeDataModelTable.py" Delete "$INSTDIR\player\UI\ModelEditor.py" Delete "$INSTDIR\player\UI\UserInterface.py" Delete "$INSTDIR\player\UI\__init__.py" Delete "$INSTDIR\player\Utilities\CPluginsModel.py" Delete "$INSTDIR\player\Utilities\LatticeDataModel.py" Delete "$INSTDIR\player\Utilities\QVTKRenderWidget.py" Delete "$INSTDIR\player\Utilities\QVTKRenderWindowInteractor.py" Delete "$INSTDIR\player\Utilities\QVTKRenderWindowInteractor_mac.py" Delete "$INSTDIR\player\Utilities\SimDelegate.py" Delete "$INSTDIR\player\Utilities\SimModel.py" Delete "$INSTDIR\player\Utilities\TreeMapper.py" Delete "$INSTDIR\player\Utilities\__init__.py" Delete "$INSTDIR\player\ViewManager\SimpleViewManager.py" Delete "$INSTDIR\player\ViewManager\__init__.py" Delete "$INSTDIR\Prerequisites\numpy-1.5.1-win32-superpack-python2.7.exe" Delete "$INSTDIR\Prerequisites\python-2.7.1.msi" Delete "$INSTDIR\Prerequisites\pywin32-216.win32-py2.7.exe" Delete "$INSTDIR\Prerequisites\vcredist_x86.exe" Delete "$INSTDIR\pythonSetupScripts\basicCompuCellPythonSimulation.py" Delete "$INSTDIR\pythonSetupScripts\basicCompuCellPythonSimulationNew.py" Delete "$INSTDIR\pythonSetupScripts\BasicSimulationData.py" Delete "$INSTDIR\pythonSetupScripts\bionetAPI.py" Delete "$INSTDIR\pythonSetupScripts\CC3DSimulationDataHandler.py" Delete "$INSTDIR\pythonSetupScripts\cellsort_2D.xml" Delete "$INSTDIR\pythonSetupScripts\CMLFieldHandler.py" Delete "$INSTDIR\pythonSetupScripts\CMLFieldStorage.py" Delete "$INSTDIR\pythonSetupScripts\CMLParser.py" Delete "$INSTDIR\pythonSetupScripts\compucell3d.bat" Delete "$INSTDIR\pythonSetupScripts\CompuCellPythonSimulation.py" Delete "$INSTDIR\pythonSetupScripts\CompuCellPythonSimulationNewPlayer.py" Delete "$INSTDIR\pythonSetupScripts\CompuCellSetup.py" Delete "$INSTDIR\pythonSetupScripts\enums.py" Delete "$INSTDIR\pythonSetupScripts\envVarSanitizer.py" Delete "$INSTDIR\pythonSetupScripts\FileLock.py" Delete "$INSTDIR\pythonSetupScripts\OrderedDict.py" Delete "$INSTDIR\pythonSetupScripts\ParameterScanEnums.py" Delete "$INSTDIR\pythonSetupScripts\ParameterScanUtils.py" Delete "$INSTDIR\pythonSetupScripts\PyDictAdder.py" Delete "$INSTDIR\pythonSetupScripts\PyListAdder.py" Delete "$INSTDIR\pythonSetupScripts\PyPlugins.py" Delete "$INSTDIR\pythonSetupScripts\PyPluginsExamples.py" Delete "$INSTDIR\pythonSetupScripts\PySteppables.py" Delete "$INSTDIR\pythonSetupScripts\PySteppablesExamples.py" Delete "$INSTDIR\pythonSetupScripts\RestartManager.py" Delete "$INSTDIR\pythonSetupScripts\RevisionNumber.py" Delete "$INSTDIR\pythonSetupScripts\RoadRunnerPy.py" Delete "$INSTDIR\pythonSetupScripts\SBMLSolverHelper.py" Delete "$INSTDIR\pythonSetupScripts\SystemUtils.py" Delete "$INSTDIR\pythonSetupScripts\TypeChangeWatcherExample.py" Delete "$INSTDIR\pythonSetupScripts\Version.py" Delete "$INSTDIR\pythonSetupScripts\XMLUtils.py" Delete "$INSTDIR\pythonSetupScripts\xml_python_expat.bat" Delete "$INSTDIR\pythonSetupScripts\xml_python_expat.py" Delete "$INSTDIR\pythonSetupScripts\xml_python_expat_1.py" Delete "$INSTDIR\Twedit++\bringupTwedit.py" Delete "$INSTDIR\Twedit++\Configuration.py" Delete "$INSTDIR\Twedit++\configurationdlg.py" Delete "$INSTDIR\Twedit++\CycleTabsPopup.py" Delete "$INSTDIR\Twedit++\DataSocketCommunicators.py" Delete "$INSTDIR\Twedit++\DOMUtils.py" Delete "$INSTDIR\Twedit++\EditorWindow.py" Delete "$INSTDIR\Twedit++\findandreplacedlg.py" Delete "$INSTDIR\Twedit++\gotolinedlg.py" Delete "$INSTDIR\Twedit++\KeyboardShortcutsDlg.py" Delete "$INSTDIR\Twedit++\KeyShortcut.py" Delete "$INSTDIR\Twedit++\LanguageManager.py" Delete "$INSTDIR\Twedit++\PrinterTwedit.py" Delete "$INSTDIR\Twedit++\QsciScintillaCustom.py" Delete "$INSTDIR\Twedit++\ThemeManager.py" Delete "$INSTDIR\Twedit++\twedit_plus_plus.py" Delete "$INSTDIR\Twedit++\twedit_plus_plus_cc3d.py" Delete "$INSTDIR\Twedit++\twedit_plus_plus_rc.py" Delete "$INSTDIR\Twedit++\ui_configurationdlg.py" Delete "$INSTDIR\Twedit++\ui_findinfilesdlg.py" Delete "$INSTDIR\Twedit++\ui_gotolinedlg.py" Delete "$INSTDIR\Twedit++\ui_KeyboardShortcuts.py" Delete "$INSTDIR\Twedit++\ui_KeyShortcut.py" Delete "$INSTDIR\Twedit++\windowsUtils.py" Delete "$INSTDIR\Twedit++\ActionManager\__init__.py" Delete "$INSTDIR\Twedit++\APIs\cplusplus.api" Delete "$INSTDIR\Twedit++\APIs\csharp.api" Delete "$INSTDIR\Twedit++\APIs\css.api" Delete "$INSTDIR\Twedit++\APIs\html.api" Delete "$INSTDIR\Twedit++\APIs\java.api" Delete "$INSTDIR\Twedit++\APIs\javascript.api" Delete "$INSTDIR\Twedit++\APIs\perl.api" Delete "$INSTDIR\Twedit++\APIs\python.api" Delete "$INSTDIR\Twedit++\APIs\ruby.api" Delete "$INSTDIR\Twedit++\APIs\xml.api" Delete "$INSTDIR\Twedit++\CQt\CQApplication.py" Delete "$INSTDIR\Twedit++\CQt\__init__.py" Delete "$INSTDIR\Twedit++\Encoding\__init__.py" Delete "$INSTDIR\Twedit++\Encoding\EncodingDetector\COPYING" Delete "$INSTDIR\Twedit++\Encoding\EncodingDetector\__init__.py" Delete "$INSTDIR\Twedit++\Encoding\EncodingDetector\chardet\big5freq.py" Delete "$INSTDIR\Twedit++\Encoding\EncodingDetector\chardet\big5prober.py" Delete "$INSTDIR\Twedit++\Encoding\EncodingDetector\chardet\chardistribution.py" Delete "$INSTDIR\Twedit++\Encoding\EncodingDetector\chardet\charsetgroupprober.py" Delete "$INSTDIR\Twedit++\Encoding\EncodingDetector\chardet\charsetprober.py" Delete "$INSTDIR\Twedit++\Encoding\EncodingDetector\chardet\codingstatemachine.py" Delete "$INSTDIR\Twedit++\Encoding\EncodingDetector\chardet\constants.py" Delete "$INSTDIR\Twedit++\Encoding\EncodingDetector\chardet\escprober.py" Delete "$INSTDIR\Twedit++\Encoding\EncodingDetector\chardet\escsm.py" Delete "$INSTDIR\Twedit++\Encoding\EncodingDetector\chardet\eucjpprober.py" Delete "$INSTDIR\Twedit++\Encoding\EncodingDetector\chardet\euckrfreq.py" Delete "$INSTDIR\Twedit++\Encoding\EncodingDetector\chardet\euckrprober.py" Delete "$INSTDIR\Twedit++\Encoding\EncodingDetector\chardet\euctwfreq.py" Delete "$INSTDIR\Twedit++\Encoding\EncodingDetector\chardet\euctwprober.py" Delete "$INSTDIR\Twedit++\Encoding\EncodingDetector\chardet\gb2312freq.py" Delete "$INSTDIR\Twedit++\Encoding\EncodingDetector\chardet\gb2312prober.py" Delete "$INSTDIR\Twedit++\Encoding\EncodingDetector\chardet\hebrewprober.py" Delete "$INSTDIR\Twedit++\Encoding\EncodingDetector\chardet\jisfreq.py" Delete "$INSTDIR\Twedit++\Encoding\EncodingDetector\chardet\jpcntx.py" Delete "$INSTDIR\Twedit++\Encoding\EncodingDetector\chardet\langbulgarianmodel.py" Delete "$INSTDIR\Twedit++\Encoding\EncodingDetector\chardet\langcyrillicmodel.py" Delete "$INSTDIR\Twedit++\Encoding\EncodingDetector\chardet\langgreekmodel.py" Delete "$INSTDIR\Twedit++\Encoding\EncodingDetector\chardet\langhebrewmodel.py" Delete "$INSTDIR\Twedit++\Encoding\EncodingDetector\chardet\langhungarianmodel.py" Delete "$INSTDIR\Twedit++\Encoding\EncodingDetector\chardet\langthaimodel.py" Delete "$INSTDIR\Twedit++\Encoding\EncodingDetector\chardet\latin1prober.py" Delete "$INSTDIR\Twedit++\Encoding\EncodingDetector\chardet\mbcharsetprober.py" Delete "$INSTDIR\Twedit++\Encoding\EncodingDetector\chardet\mbcsgroupprober.py" Delete "$INSTDIR\Twedit++\Encoding\EncodingDetector\chardet\mbcssm.py" Delete "$INSTDIR\Twedit++\Encoding\EncodingDetector\chardet\sbcharsetprober.py" Delete "$INSTDIR\Twedit++\Encoding\EncodingDetector\chardet\sbcsgroupprober.py" Delete "$INSTDIR\Twedit++\Encoding\EncodingDetector\chardet\sjisprober.py" Delete "$INSTDIR\Twedit++\Encoding\EncodingDetector\chardet\test.py" Delete "$INSTDIR\Twedit++\Encoding\EncodingDetector\chardet\universaldetector.py" Delete "$INSTDIR\Twedit++\Encoding\EncodingDetector\chardet\utf8prober.py" Delete "$INSTDIR\Twedit++\Encoding\EncodingDetector\chardet\__init__.py" Delete "$INSTDIR\Twedit++\Encoding\EncodingDetector\docs\faq.html" Delete "$INSTDIR\Twedit++\Encoding\EncodingDetector\docs\history.html" Delete "$INSTDIR\Twedit++\Encoding\EncodingDetector\docs\how-it-works.html" Delete "$INSTDIR\Twedit++\Encoding\EncodingDetector\docs\index.html" Delete "$INSTDIR\Twedit++\Encoding\EncodingDetector\docs\license.html" Delete "$INSTDIR\Twedit++\Encoding\EncodingDetector\docs\supported-encodings.html" Delete "$INSTDIR\Twedit++\Encoding\EncodingDetector\docs\usage.html" Delete "$INSTDIR\Twedit++\Encoding\EncodingDetector\docs\css\chardet.css" Delete "$INSTDIR\Twedit++\Encoding\EncodingDetector\docs\images\caution.png" Delete "$INSTDIR\Twedit++\Encoding\EncodingDetector\docs\images\important.png" Delete "$INSTDIR\Twedit++\Encoding\EncodingDetector\docs\images\note.png" Delete "$INSTDIR\Twedit++\Encoding\EncodingDetector\docs\images\permalink.gif" Delete "$INSTDIR\Twedit++\Encoding\EncodingDetector\docs\images\tip.png" Delete "$INSTDIR\Twedit++\Encoding\EncodingDetector\docs\images\warning.png" Delete "$INSTDIR\Twedit++\icons\application-exit.png" Delete "$INSTDIR\Twedit++\icons\configure.png" Delete "$INSTDIR\Twedit++\icons\document-clean.png" Delete "$INSTDIR\Twedit++\icons\document-edited.png" Delete "$INSTDIR\Twedit++\icons\document-new.png" Delete "$INSTDIR\Twedit++\icons\document-open.png" Delete "$INSTDIR\Twedit++\icons\document-print-preview.png" Delete "$INSTDIR\Twedit++\icons\document-print.png" Delete "$INSTDIR\Twedit++\icons\document-save-all.png" Delete "$INSTDIR\Twedit++\icons\document-save-as.png" Delete "$INSTDIR\Twedit++\icons\document-save.png" Delete "$INSTDIR\Twedit++\icons\edit-copy.png" Delete "$INSTDIR\Twedit++\icons\edit-cut.png" Delete "$INSTDIR\Twedit++\icons\edit-delete.png" Delete "$INSTDIR\Twedit++\icons\edit-find.png" Delete "$INSTDIR\Twedit++\icons\edit-paste.png" Delete "$INSTDIR\Twedit++\icons\edit-redo.png" Delete "$INSTDIR\Twedit++\icons\edit-undo.png" Delete "$INSTDIR\Twedit++\icons\flag.png" Delete "$INSTDIR\Twedit++\icons\format-indent-less.png" Delete "$INSTDIR\Twedit++\icons\format-indent-more.png" Delete "$INSTDIR\Twedit++\icons\gear.png" Delete "$INSTDIR\Twedit++\icons\lizard-at-a-computer-small.png" Delete "$INSTDIR\Twedit++\icons\tab-close.png" Delete "$INSTDIR\Twedit++\icons\twedit-icon-setup.ico" Delete "$INSTDIR\Twedit++\icons\twedit-icon.ico" Delete "$INSTDIR\Twedit++\icons\twedit-icon.png" Delete "$INSTDIR\Twedit++\icons\zoom-in.png" Delete "$INSTDIR\Twedit++\icons\zoom-original.png" Delete "$INSTDIR\Twedit++\icons\zoom-out.png" Delete "$INSTDIR\Twedit++\Messaging\__init__.py" Delete "$INSTDIR\Twedit++\PluginManager\PluginExceptions.py" Delete "$INSTDIR\Twedit++\PluginManager\PluginManager.py" Delete "$INSTDIR\Twedit++\PluginManager\__init__.py" Delete "$INSTDIR\Twedit++\Plugins\PluginCCDCPPHelper.py" Delete "$INSTDIR\Twedit++\Plugins\PluginCCDMLHelper.py" Delete "$INSTDIR\Twedit++\Plugins\PluginCCDProject.py" Delete "$INSTDIR\Twedit++\Plugins\PluginCCDPythonHelper.py" Delete "$INSTDIR\Twedit++\Plugins\PluginCompuCell3D.py" Delete "$INSTDIR\Twedit++\Plugins\CC3DCPPHelper\Configuration.py" Delete "$INSTDIR\Twedit++\Plugins\CC3DCPPHelper\CPPModuleGeneratorDialog.py" Delete "$INSTDIR\Twedit++\Plugins\CC3DCPPHelper\CppTemplates.py" Delete "$INSTDIR\Twedit++\Plugins\CC3DCPPHelper\Snippets.cpp.template" Delete "$INSTDIR\Twedit++\Plugins\CC3DCPPHelper\ui_c_plus_plus_module_dialog.py" Delete "$INSTDIR\Twedit++\Plugins\CC3DCPPHelper\__init__.py" Delete "$INSTDIR\Twedit++\Plugins\CC3DMLGenerator\CC3DMLGeneratorBase.py" Delete "$INSTDIR\Twedit++\Plugins\CC3DMLGenerator\__init__.py" Delete "$INSTDIR\Twedit++\Plugins\CC3DMLHelper\adhesionflexdlg.py" Delete "$INSTDIR\Twedit++\Plugins\CC3DMLHelper\celltypedlg.py" Delete "$INSTDIR\Twedit++\Plugins\CC3DMLHelper\SnippetUtils.py" Delete "$INSTDIR\Twedit++\Plugins\CC3DMLHelper\ui_adhesionflexdlg.py" Delete "$INSTDIR\Twedit++\Plugins\CC3DMLHelper\ui_celltypedlg.py" Delete "$INSTDIR\Twedit++\Plugins\CC3DMLHelper\__init__.py" Delete "$INSTDIR\Twedit++\Plugins\CC3DProject\CC3DProject_rc.py" Delete "$INSTDIR\Twedit++\Plugins\CC3DProject\CC3DPythonGenerator.py" Delete "$INSTDIR\Twedit++\Plugins\CC3DProject\CC3DXMLGenerator.py" Delete "$INSTDIR\Twedit++\Plugins\CC3DProject\Configuration.py" Delete "$INSTDIR\Twedit++\Plugins\CC3DProject\enums.py" Delete "$INSTDIR\Twedit++\Plugins\CC3DProject\ItemProperties.py" Delete "$INSTDIR\Twedit++\Plugins\CC3DProject\NewFileWizard.py" Delete "$INSTDIR\Twedit++\Plugins\CC3DProject\NewSimulationWizard.py" Delete "$INSTDIR\Twedit++\Plugins\CC3DProject\ParameterDialog.py" Delete "$INSTDIR\Twedit++\Plugins\CC3DProject\ParValDlg.py" Delete "$INSTDIR\Twedit++\Plugins\CC3DProject\SerializerEdit.py" Delete "$INSTDIR\Twedit++\Plugins\CC3DProject\SteppableGeneratorDialog.py" Delete "$INSTDIR\Twedit++\Plugins\CC3DProject\SteppableTemplates.py" Delete "$INSTDIR\Twedit++\Plugins\CC3DProject\ui_itemproperties.py" Delete "$INSTDIR\Twedit++\Plugins\CC3DProject\ui_newfilewizard.py" Delete "$INSTDIR\Twedit++\Plugins\CC3DProject\ui_newsimulationwizard.py" Delete "$INSTDIR\Twedit++\Plugins\CC3DProject\ui_parameterdlg.py" Delete "$INSTDIR\Twedit++\Plugins\CC3DProject\ui_parvaldlg.py" Delete "$INSTDIR\Twedit++\Plugins\CC3DProject\ui_serializereditdlg.py" Delete "$INSTDIR\Twedit++\Plugins\CC3DProject\ui_steppablegeneratordialog.py" Delete "$INSTDIR\Twedit++\Plugins\CC3DProject\__init__.py" Delete "$INSTDIR\Twedit++\Plugins\CC3DProject\icons\add-serializer.png" Delete "$INSTDIR\Twedit++\Plugins\CC3DProject\icons\add.png" Delete "$INSTDIR\Twedit++\Plugins\CC3DProject\icons\addSteppable.png" Delete "$INSTDIR\Twedit++\Plugins\CC3DProject\icons\cc3d_64x64_logo.png" Delete "$INSTDIR\Twedit++\Plugins\CC3DProject\icons\editor.png" Delete "$INSTDIR\Twedit++\Plugins\CC3DProject\icons\new-project.png" Delete "$INSTDIR\Twedit++\Plugins\CC3DProject\icons\open-in-editor.png" Delete "$INSTDIR\Twedit++\Plugins\CC3DProject\icons\open-project.png" Delete "$INSTDIR\Twedit++\Plugins\CC3DProject\icons\pifgen_64x64.png" Delete "$INSTDIR\Twedit++\Plugins\CC3DProject\icons\player-icon.png" Delete "$INSTDIR\Twedit++\Plugins\CC3DProject\icons\python-icon.png" Delete "$INSTDIR\Twedit++\Plugins\CC3DProject\icons\remove.png" Delete "$INSTDIR\Twedit++\Plugins\CC3DProject\icons\reset_32x32.png" Delete "$INSTDIR\Twedit++\Plugins\CC3DProject\icons\reset_64x64.png" Delete "$INSTDIR\Twedit++\Plugins\CC3DProject\icons\save-project.png" Delete "$INSTDIR\Twedit++\Plugins\CC3DProject\icons\save-simulation.png" Delete "$INSTDIR\Twedit++\Plugins\CC3DProject\icons\scan_32x32.png" Delete "$INSTDIR\Twedit++\Plugins\CC3DProject\icons\scan_64x64.png" Delete "$INSTDIR\Twedit++\Plugins\CC3DProject\icons\xml-icon.png" Delete "$INSTDIR\Twedit++\Plugins\CC3DPythonHelper\sbmlloaddlg.py" Delete "$INSTDIR\Twedit++\Plugins\CC3DPythonHelper\Snippets.py.template" Delete "$INSTDIR\Twedit++\Plugins\CC3DPythonHelper\ui_sbmlloaddlg.py" Delete "$INSTDIR\Twedit++\Plugins\CC3DPythonHelper\__init__.py" Delete "$INSTDIR\Twedit++\Plugins\CompuCell3D\CC3DListener.py" Delete "$INSTDIR\Twedit++\Plugins\CompuCell3D\PluginCompuCell3D_rc.py" Delete "$INSTDIR\Twedit++\Plugins\CompuCell3D\__init__.py" Delete "$INSTDIR\Twedit++\Plugins\PluginUtils\SnippetMenuParser.py" Delete "$INSTDIR\Twedit++\Plugins\PluginUtils\__init__.py" Delete "$INSTDIR\Twedit++\themes\Bespin.xml" Delete "$INSTDIR\Twedit++\themes\Black board.xml" Delete "$INSTDIR\Twedit++\themes\Choco.xml" Delete "$INSTDIR\Twedit++\themes\Deep Black.xml" Delete "$INSTDIR\Twedit++\themes\Default.xml" Delete "$INSTDIR\Twedit++\themes\Hello Kitty.xml" Delete "$INSTDIR\Twedit++\themes\Mono Industrial.xml" Delete "$INSTDIR\Twedit++\themes\Monokai.xml" Delete "$INSTDIR\Twedit++\themes\Obsidian.xml" Delete "$INSTDIR\Twedit++\themes\Plastic Code Wrap.xml" Delete "$INSTDIR\Twedit++\themes\Ruby Blue.xml" Delete "$INSTDIR\Twedit++\themes\Twilight.xml" Delete "$INSTDIR\Twedit++\themes\Vibrant Ink.xml" Delete "$INSTDIR\Twedit++\themes\vim Dark Blue.xml" Delete "$INSTDIR\Twedit++\themes\Zenburn.xml" RmDir "$INSTDIR\Twedit++\themes" RmDir "$INSTDIR\Twedit++\Plugins\PluginUtils" RmDir "$INSTDIR\Twedit++\Plugins\CompuCell3D" RmDir "$INSTDIR\Twedit++\Plugins\CC3DPythonHelper" RmDir "$INSTDIR\Twedit++\Plugins\CC3DProject\icons" RmDir "$INSTDIR\Twedit++\Plugins\CC3DProject" RmDir "$INSTDIR\Twedit++\Plugins\CC3DMLHelper" RmDir "$INSTDIR\Twedit++\Plugins\CC3DMLGenerator" RmDir "$INSTDIR\Twedit++\Plugins\CC3DCPPHelper" RmDir "$INSTDIR\Twedit++\Plugins" RmDir "$INSTDIR\Twedit++\PluginManager" RmDir "$INSTDIR\Twedit++\Messaging" RmDir "$INSTDIR\Twedit++\icons" RmDir "$INSTDIR\Twedit++\Encoding\EncodingDetector\docs\images" RmDir "$INSTDIR\Twedit++\Encoding\EncodingDetector\docs\css" RmDir "$INSTDIR\Twedit++\Encoding\EncodingDetector\docs" RmDir "$INSTDIR\Twedit++\Encoding\EncodingDetector\chardet" RmDir "$INSTDIR\Twedit++\Encoding\EncodingDetector" RmDir "$INSTDIR\Twedit++\Encoding" RmDir "$INSTDIR\Twedit++\CQt" RmDir "$INSTDIR\Twedit++\APIs" RmDir "$INSTDIR\Twedit++\ActionManager" RmDir "$INSTDIR\Twedit++" RmDir "$INSTDIR\pythonSetupScripts" RmDir "$INSTDIR\Prerequisites" RmDir "$INSTDIR\player\ViewManager" RmDir "$INSTDIR\player\Utilities" RmDir "$INSTDIR\player\UI" RmDir "$INSTDIR\player\Simulation" RmDir "$INSTDIR\player\Plugins\ViewManagerPlugins" RmDir "$INSTDIR\player\Plugins" RmDir "$INSTDIR\player\PluginManager" RmDir "$INSTDIR\player\Messaging" RmDir "$INSTDIR\player\icons" RmDir "$INSTDIR\player\Graphics" RmDir "$INSTDIR\player\CustomGui" RmDir "$INSTDIR\player\CQt" RmDir "$INSTDIR\player\Configuration" RmDir "$INSTDIR\player" RmDir "$INSTDIR\lib\PythonDeps\vtk\wx" RmDir "$INSTDIR\lib\PythonDeps\vtk\util" RmDir "$INSTDIR\lib\PythonDeps\vtk\tk" RmDir "$INSTDIR\lib\PythonDeps\vtk\test" RmDir "$INSTDIR\lib\PythonDeps\vtk\qt4" RmDir "$INSTDIR\lib\PythonDeps\vtk\qt" RmDir "$INSTDIR\lib\PythonDeps\vtk\gtk" RmDir "$INSTDIR\lib\PythonDeps\vtk" RmDir "$INSTDIR\lib\PythonDeps\sip\Qwt5" RmDir "$INSTDIR\lib\PythonDeps\sip\QtXmlPatterns" RmDir "$INSTDIR\lib\PythonDeps\sip\QtXml" RmDir "$INSTDIR\lib\PythonDeps\sip\QtWebKit" RmDir "$INSTDIR\lib\PythonDeps\sip\QtTest" RmDir "$INSTDIR\lib\PythonDeps\sip\QtSvg" RmDir "$INSTDIR\lib\PythonDeps\sip\QtSql" RmDir "$INSTDIR\lib\PythonDeps\sip\QtScriptTools" RmDir "$INSTDIR\lib\PythonDeps\sip\QtScript" RmDir "$INSTDIR\lib\PythonDeps\sip\QtOpenGL" RmDir "$INSTDIR\lib\PythonDeps\sip\QtNetwork" RmDir "$INSTDIR\lib\PythonDeps\sip\QtMultimedia" RmDir "$INSTDIR\lib\PythonDeps\sip\QtHelp" RmDir "$INSTDIR\lib\PythonDeps\sip\QtGui" RmDir "$INSTDIR\lib\PythonDeps\sip\QtDesigner" RmDir "$INSTDIR\lib\PythonDeps\sip\QtDeclarative" RmDir "$INSTDIR\lib\PythonDeps\sip\QtCore" RmDir "$INSTDIR\lib\PythonDeps\sip\Qt" RmDir "$INSTDIR\lib\PythonDeps\sip\Qsci" RmDir "$INSTDIR\lib\PythonDeps\sip\QAxContainer" RmDir "$INSTDIR\lib\PythonDeps\sip\phonon" RmDir "$INSTDIR\lib\PythonDeps\sip" RmDir "$INSTDIR\lib\PythonDeps\PyQt4\uic\widget-plugins" RmDir "$INSTDIR\lib\PythonDeps\PyQt4\uic\port_v3" RmDir "$INSTDIR\lib\PythonDeps\PyQt4\uic\port_v2" RmDir "$INSTDIR\lib\PythonDeps\PyQt4\uic\Loader" RmDir "$INSTDIR\lib\PythonDeps\PyQt4\uic\Compiler" RmDir "$INSTDIR\lib\PythonDeps\PyQt4\uic" RmDir "$INSTDIR\lib\PythonDeps\PyQt4\Qwt5" RmDir "$INSTDIR\lib\PythonDeps\PyQt4" RmDir "$INSTDIR\lib\PythonDeps" RmDir "$INSTDIR\lib\python\roadrunner\testing" RmDir "$INSTDIR\lib\python\roadrunner" RmDir "$INSTDIR\lib\python" RmDir "$INSTDIR\lib\CompuCell3DSteppables\OpenCL" RmDir "$INSTDIR\lib\CompuCell3DSteppables" RmDir "$INSTDIR\lib\CompuCell3DPlugins" RmDir "$INSTDIR\lib" RmDir "$INSTDIR\include\SerializerDE" RmDir "$INSTDIR\include\sbmlsolver" RmDir "$INSTDIR\include\pyinterface\PyPlugin" RmDir "$INSTDIR\include\pyinterface" RmDir "$INSTDIR\include\CompuCell3D\XMLUtils" RmDir "$INSTDIR\include\CompuCell3D\Utils" RmDir "$INSTDIR\include\CompuCell3D\PublicUtilities\Units" RmDir "$INSTDIR\include\CompuCell3D\PublicUtilities" RmDir "$INSTDIR\include\CompuCell3D\muParser\ExpressionEvaluator" RmDir "$INSTDIR\include\CompuCell3D\muParser" RmDir "$INSTDIR\include\CompuCell3D\CompuCell3D\steppables\UniformFieldInitializer" RmDir "$INSTDIR\include\CompuCell3D\CompuCell3D\steppables\RandomInitializers" RmDir "$INSTDIR\include\CompuCell3D\CompuCell3D\steppables\PIFInitializer" RmDir "$INSTDIR\include\CompuCell3D\CompuCell3D\steppables\PIFDumper" RmDir "$INSTDIR\include\CompuCell3D\CompuCell3D\steppables\PDESolvers" RmDir "$INSTDIR\include\CompuCell3D\CompuCell3D\steppables\ObjInitializer" RmDir "$INSTDIR\include\CompuCell3D\CompuCell3D\steppables\MitosisSteppable" RmDir "$INSTDIR\include\CompuCell3D\CompuCell3D\steppables\FoamDataOutput" RmDir "$INSTDIR\include\CompuCell3D\CompuCell3D\steppables\Dicty" RmDir "$INSTDIR\include\CompuCell3D\CompuCell3D\steppables\CleaverMeshDumper" RmDir "$INSTDIR\include\CompuCell3D\CompuCell3D\steppables\BoxWatcher" RmDir "$INSTDIR\include\CompuCell3D\CompuCell3D\steppables\BlobFieldInitializer" RmDir "$INSTDIR\include\CompuCell3D\CompuCell3D\steppables" RmDir "$INSTDIR\include\CompuCell3D\CompuCell3D\Potts3D" RmDir "$INSTDIR\include\CompuCell3D\CompuCell3D\plugins\VolumeTracker" RmDir "$INSTDIR\include\CompuCell3D\CompuCell3D\plugins\Volume" RmDir "$INSTDIR\include\CompuCell3D\CompuCell3D\plugins\Viscosity" RmDir "$INSTDIR\include\CompuCell3D\CompuCell3D\plugins\Template" RmDir "$INSTDIR\include\CompuCell3D\CompuCell3D\plugins\SurfaceTracker" RmDir "$INSTDIR\include\CompuCell3D\CompuCell3D\plugins\Surface" RmDir "$INSTDIR\include\CompuCell3D\CompuCell3D\plugins\Stretchness" RmDir "$INSTDIR\include\CompuCell3D\CompuCell3D\plugins\SimpleClock" RmDir "$INSTDIR\include\CompuCell3D\CompuCell3D\plugins\Secretion" RmDir "$INSTDIR\include\CompuCell3D\CompuCell3D\plugins\Rearrangement" RmDir "$INSTDIR\include\CompuCell3D\CompuCell3D\plugins\PolarizationVector" RmDir "$INSTDIR\include\CompuCell3D\CompuCell3D\plugins\Polarization23" RmDir "$INSTDIR\include\CompuCell3D\CompuCell3D\plugins\PlayerSettings" RmDir "$INSTDIR\include\CompuCell3D\CompuCell3D\plugins\PlasticityTracker" RmDir "$INSTDIR\include\CompuCell3D\CompuCell3D\plugins\Plasticity" RmDir "$INSTDIR\include\CompuCell3D\CompuCell3D\plugins\PixelTracker" RmDir "$INSTDIR\include\CompuCell3D\CompuCell3D\plugins\PDESolverCaller" RmDir "$INSTDIR\include\CompuCell3D\CompuCell3D\plugins\OrientedContact" RmDir "$INSTDIR\include\CompuCell3D\CompuCell3D\plugins\NeighborTracker" RmDir "$INSTDIR\include\CompuCell3D\CompuCell3D\plugins\NeighborStick" RmDir "$INSTDIR\include\CompuCell3D\CompuCell3D\plugins\MomentOfInertia" RmDir "$INSTDIR\include\CompuCell3D\CompuCell3D\plugins\Mitosis" RmDir "$INSTDIR\include\CompuCell3D\CompuCell3D\plugins\LengthConstraint" RmDir "$INSTDIR\include\CompuCell3D\CompuCell3D\plugins\GlobalBoundaryPixelTracker" RmDir "$INSTDIR\include\CompuCell3D\CompuCell3D\plugins\FocalPointPlasticity" RmDir "$INSTDIR\include\CompuCell3D\CompuCell3D\plugins\ExternalPotential" RmDir "$INSTDIR\include\CompuCell3D\CompuCell3D\plugins\ElasticityTracker" RmDir "$INSTDIR\include\CompuCell3D\CompuCell3D\plugins\Elasticity" RmDir "$INSTDIR\include\CompuCell3D\CompuCell3D\plugins\Curvature" RmDir "$INSTDIR\include\CompuCell3D\CompuCell3D\plugins\ConvergentExtension" RmDir "$INSTDIR\include\CompuCell3D\CompuCell3D\plugins\ContactOrientation" RmDir "$INSTDIR\include\CompuCell3D\CompuCell3D\plugins\ContactMultiCad" RmDir "$INSTDIR\include\CompuCell3D\CompuCell3D\plugins\ContactLocalProduct" RmDir "$INSTDIR\include\CompuCell3D\CompuCell3D\plugins\ContactLocalFlex" RmDir "$INSTDIR\include\CompuCell3D\CompuCell3D\plugins\ContactInternal" RmDir "$INSTDIR\include\CompuCell3D\CompuCell3D\plugins\Contact" RmDir "$INSTDIR\include\CompuCell3D\CompuCell3D\plugins\ConnectivityLocalFlex" RmDir "$INSTDIR\include\CompuCell3D\CompuCell3D\plugins\ConnectivityGlobal" RmDir "$INSTDIR\include\CompuCell3D\CompuCell3D\plugins\Connectivity" RmDir "$INSTDIR\include\CompuCell3D\CompuCell3D\plugins\Compartment" RmDir "$INSTDIR\include\CompuCell3D\CompuCell3D\plugins\ClusterSurfaceTracker" RmDir "$INSTDIR\include\CompuCell3D\CompuCell3D\plugins\ClusterSurface" RmDir "$INSTDIR\include\CompuCell3D\CompuCell3D\plugins\ChemotaxisSimple" RmDir "$INSTDIR\include\CompuCell3D\CompuCell3D\plugins\ChemotaxisDicty" RmDir "$INSTDIR\include\CompuCell3D\CompuCell3D\plugins\Chemotaxis" RmDir "$INSTDIR\include\CompuCell3D\CompuCell3D\plugins\CenterOfMass" RmDir "$INSTDIR\include\CompuCell3D\CompuCell3D\plugins\CellTypeMonitor" RmDir "$INSTDIR\include\CompuCell3D\CompuCell3D\plugins\CellType" RmDir "$INSTDIR\include\CompuCell3D\CompuCell3D\plugins\CellOrientation" RmDir "$INSTDIR\include\CompuCell3D\CompuCell3D\plugins\BoundaryPixelTracker" RmDir "$INSTDIR\include\CompuCell3D\CompuCell3D\plugins\BoundaryMonitor" RmDir "$INSTDIR\include\CompuCell3D\CompuCell3D\plugins\AdhesionFlex" RmDir "$INSTDIR\include\CompuCell3D\CompuCell3D\plugins" RmDir "$INSTDIR\include\CompuCell3D\CompuCell3D\Field3D" RmDir "$INSTDIR\include\CompuCell3D\CompuCell3D\Boundary" RmDir "$INSTDIR\include\CompuCell3D\CompuCell3D\Automaton" RmDir "$INSTDIR\include\CompuCell3D\CompuCell3D" RmDir "$INSTDIR\include\CompuCell3D\BasicUtils" RmDir "$INSTDIR\include\CompuCell3D" RmDir "$INSTDIR\include\bionetsolver" RmDir "$INSTDIR\include" RmDir "$INSTDIR\icons" RmDir "$INSTDIR\Demos\SteppableDemos\SteadyStateDiffusionSolver\diffusion_steady_state_ext_potential_3D_oxygen\Simulation" RmDir "$INSTDIR\Demos\SteppableDemos\SteadyStateDiffusionSolver\diffusion_steady_state_ext_potential_3D_oxygen" RmDir "$INSTDIR\Demos\SteppableDemos\SteadyStateDiffusionSolver\diffusion_steady_state_ext_potential_3D\Simulation" RmDir "$INSTDIR\Demos\SteppableDemos\SteadyStateDiffusionSolver\diffusion_steady_state_ext_potential_3D" RmDir "$INSTDIR\Demos\SteppableDemos\SteadyStateDiffusionSolver\diffusion_steady_state_ext_potential\Simulation" RmDir "$INSTDIR\Demos\SteppableDemos\SteadyStateDiffusionSolver\diffusion_steady_state_ext_potential" RmDir "$INSTDIR\Demos\SteppableDemos\SteadyStateDiffusionSolver\diffusion_steady_state_2D\Simulation" RmDir "$INSTDIR\Demos\SteppableDemos\SteadyStateDiffusionSolver\diffusion_steady_state_2D" RmDir "$INSTDIR\Demos\SteppableDemos\SteadyStateDiffusionSolver" RmDir "$INSTDIR\Demos\SteppableDemos\SecretionSteadyState\Simulation" RmDir "$INSTDIR\Demos\SteppableDemos\SecretionSteadyState" RmDir "$INSTDIR\Demos\SteppableDemos\secretion\Simulation" RmDir "$INSTDIR\Demos\SteppableDemos\secretion" RmDir "$INSTDIR\Demos\SteppableDemos\ReactionDiffusionSolverFE_OpenCL_Implicit\SimpleDiffusion\Simulation" RmDir "$INSTDIR\Demos\SteppableDemos\ReactionDiffusionSolverFE_OpenCL_Implicit\SimpleDiffusion" RmDir "$INSTDIR\Demos\SteppableDemos\ReactionDiffusionSolverFE_OpenCL_Implicit\ReactionDiffusion_OpenCL_Implicit_3D\Simulation" RmDir "$INSTDIR\Demos\SteppableDemos\ReactionDiffusionSolverFE_OpenCL_Implicit\ReactionDiffusion_OpenCL_Implicit_3D" RmDir "$INSTDIR\Demos\SteppableDemos\ReactionDiffusionSolverFE_OpenCL_Implicit" RmDir "$INSTDIR\Demos\SteppableDemos\ReactionDiffusionSolverFE\ReactionDiffusioin_2D_FN\Simulation" RmDir "$INSTDIR\Demos\SteppableDemos\ReactionDiffusionSolverFE\ReactionDiffusioin_2D_FN" RmDir "$INSTDIR\Demos\SteppableDemos\ReactionDiffusionSolverFE\ReactionDiffusioin_2D\Simulation" RmDir "$INSTDIR\Demos\SteppableDemos\ReactionDiffusionSolverFE\ReactionDiffusioin_2D" RmDir "$INSTDIR\Demos\SteppableDemos\ReactionDiffusionSolverFE" RmDir "$INSTDIR\Demos\SteppableDemos\KernelDiffusionSolver\diffusion_2D_kernel_coarse_grain\Simulation" RmDir "$INSTDIR\Demos\SteppableDemos\KernelDiffusionSolver\diffusion_2D_kernel_coarse_grain" RmDir "$INSTDIR\Demos\SteppableDemos\KernelDiffusionSolver\diffusion_2D_kernel\Simulation" RmDir "$INSTDIR\Demos\SteppableDemos\KernelDiffusionSolver\diffusion_2D_kernel" RmDir "$INSTDIR\Demos\SteppableDemos\KernelDiffusionSolver" RmDir "$INSTDIR\Demos\SteppableDemos\FlexibleDiffusionSolverFE\Steering\Simulation" RmDir "$INSTDIR\Demos\SteppableDemos\FlexibleDiffusionSolverFE\Steering" RmDir "$INSTDIR\Demos\SteppableDemos\FlexibleDiffusionSolverFE\diffusion_wall_2D\Simulation" RmDir "$INSTDIR\Demos\SteppableDemos\FlexibleDiffusionSolverFE\diffusion_wall_2D" RmDir "$INSTDIR\Demos\SteppableDemos\FlexibleDiffusionSolverFE\diffusion_inside_2D\Simulation" RmDir "$INSTDIR\Demos\SteppableDemos\FlexibleDiffusionSolverFE\diffusion_inside_2D" RmDir "$INSTDIR\Demos\SteppableDemos\FlexibleDiffusionSolverFE\diffusion_fast_box_3D\Simulation" RmDir "$INSTDIR\Demos\SteppableDemos\FlexibleDiffusionSolverFE\diffusion_fast_box_3D" RmDir "$INSTDIR\Demos\SteppableDemos\FlexibleDiffusionSolverFE\diffusion_2D_uptake\Simulation" RmDir "$INSTDIR\Demos\SteppableDemos\FlexibleDiffusionSolverFE\diffusion_2D_uptake" RmDir "$INSTDIR\Demos\SteppableDemos\FlexibleDiffusionSolverFE\diffusion_2D_try\Simulation" RmDir "$INSTDIR\Demos\SteppableDemos\FlexibleDiffusionSolverFE\diffusion_2D_try" RmDir "$INSTDIR\Demos\SteppableDemos\FlexibleDiffusionSolverFE\diffusion_2D_multicall\Simulation" RmDir "$INSTDIR\Demos\SteppableDemos\FlexibleDiffusionSolverFE\diffusion_2D_multicall" RmDir "$INSTDIR\Demos\SteppableDemos\FlexibleDiffusionSolverFE\diffusion_2D_init\Simulation" RmDir "$INSTDIR\Demos\SteppableDemos\FlexibleDiffusionSolverFE\diffusion_2D_init" RmDir "$INSTDIR\Demos\SteppableDemos\FlexibleDiffusionSolverFE\diffusion_2D\Simulation" RmDir "$INSTDIR\Demos\SteppableDemos\FlexibleDiffusionSolverFE\diffusion_2D" RmDir "$INSTDIR\Demos\SteppableDemos\FlexibleDiffusionSolverFE" RmDir "$INSTDIR\Demos\SteppableDemos\FlexibleDiffusionSolverADE\diffusion_3D_ADE\Simulation" RmDir "$INSTDIR\Demos\SteppableDemos\FlexibleDiffusionSolverADE\diffusion_3D_ADE" RmDir "$INSTDIR\Demos\SteppableDemos\FlexibleDiffusionSolverADE\diffusion_2D_ADE\Simulation" RmDir "$INSTDIR\Demos\SteppableDemos\FlexibleDiffusionSolverADE\diffusion_2D_ADE" RmDir "$INSTDIR\Demos\SteppableDemos\FlexibleDiffusionSolverADE" RmDir "$INSTDIR\Demos\SteppableDemos\FastDiffusionSolver2DFE\diffusion_fast_box\Simulation" RmDir "$INSTDIR\Demos\SteppableDemos\FastDiffusionSolver2DFE\diffusion_fast_box" RmDir "$INSTDIR\Demos\SteppableDemos\FastDiffusionSolver2DFE" RmDir "$INSTDIR\Demos\SteppableDemos\DiffusionSolverFE_OpenCL\DiffusionSolverFE_OpenCL_3D\Simulation" RmDir "$INSTDIR\Demos\SteppableDemos\DiffusionSolverFE_OpenCL\DiffusionSolverFE_OpenCL_3D" RmDir "$INSTDIR\Demos\SteppableDemos\DiffusionSolverFE_OpenCL\DiffusionSolverFE_OpenCL\Simulation" RmDir "$INSTDIR\Demos\SteppableDemos\DiffusionSolverFE_OpenCL\DiffusionSolverFE_OpenCL" RmDir "$INSTDIR\Demos\SteppableDemos\DiffusionSolverFE_OpenCL" RmDir "$INSTDIR\Demos\SteppableDemos\DiffusionSolverFE\diffusion_3D_scale_wall\Simulation" RmDir "$INSTDIR\Demos\SteppableDemos\DiffusionSolverFE\diffusion_3D_scale_wall" RmDir "$INSTDIR\Demos\SteppableDemos\DiffusionSolverFE\diffusion_2D_scale_wall\Simulation" RmDir "$INSTDIR\Demos\SteppableDemos\DiffusionSolverFE\diffusion_2D_scale_wall" RmDir "$INSTDIR\Demos\SteppableDemos\DiffusionSolverFE\diffusion_2D_scale\Simulation" RmDir "$INSTDIR\Demos\SteppableDemos\DiffusionSolverFE\diffusion_2D_scale" RmDir "$INSTDIR\Demos\SteppableDemos\DiffusionSolverFE\DiffusionSolverFE_3D\Simulation" RmDir "$INSTDIR\Demos\SteppableDemos\DiffusionSolverFE\DiffusionSolverFE_3D" RmDir "$INSTDIR\Demos\SteppableDemos\DiffusionSolverFE\DiffusionSolverFE\Simulation" RmDir "$INSTDIR\Demos\SteppableDemos\DiffusionSolverFE\DiffusionSolverFE" RmDir "$INSTDIR\Demos\SteppableDemos\DiffusionSolverFE" RmDir "$INSTDIR\Demos\SteppableDemos\BoxWatcher\Simulation" RmDir "$INSTDIR\Demos\SteppableDemos\BoxWatcher" RmDir "$INSTDIR\Demos\SteppableDemos" RmDir "$INSTDIR\Demos\SimulationSettings\VariableMotility\Simulation" RmDir "$INSTDIR\Demos\SimulationSettings\VariableMotility" RmDir "$INSTDIR\Demos\SimulationSettings\Steering\Simulation" RmDir "$INSTDIR\Demos\SimulationSettings\Steering" RmDir "$INSTDIR\Demos\SimulationSettings\SimulationStatistics\cellsort_2D_statistics_spin_flip\Simulation" RmDir "$INSTDIR\Demos\SimulationSettings\SimulationStatistics\cellsort_2D_statistics_spin_flip" RmDir "$INSTDIR\Demos\SimulationSettings\SimulationStatistics\cellsort_2D_statistics\Simulation" RmDir "$INSTDIR\Demos\SimulationSettings\SimulationStatistics\cellsort_2D_statistics" RmDir "$INSTDIR\Demos\SimulationSettings\SimulationStatistics" RmDir "$INSTDIR\Demos\SimulationSettings\PlayerSettings\Simulation" RmDir "$INSTDIR\Demos\SimulationSettings\PlayerSettings" RmDir "$INSTDIR\Demos\SimulationSettings\ParameterUnits\Simulation" RmDir "$INSTDIR\Demos\SimulationSettings\ParameterUnits" RmDir "$INSTDIR\Demos\SimulationSettings\ParallelCC3DExamples\FocalPointPlasticityCompartments\Simulation" RmDir "$INSTDIR\Demos\SimulationSettings\ParallelCC3DExamples\FocalPointPlasticityCompartments" RmDir "$INSTDIR\Demos\SimulationSettings\ParallelCC3DExamples\elasticityTest\Simulation" RmDir "$INSTDIR\Demos\SimulationSettings\ParallelCC3DExamples\elasticityTest" RmDir "$INSTDIR\Demos\SimulationSettings\ParallelCC3DExamples\DynamicNumberOfProcessors\Simulation" RmDir "$INSTDIR\Demos\SimulationSettings\ParallelCC3DExamples\DynamicNumberOfProcessors" RmDir "$INSTDIR\Demos\SimulationSettings\ParallelCC3DExamples\diffusion-3D\Simulation" RmDir "$INSTDIR\Demos\SimulationSettings\ParallelCC3DExamples\diffusion-3D" RmDir "$INSTDIR\Demos\SimulationSettings\ParallelCC3DExamples\cellsort_3D_open_mp\Simulation" RmDir "$INSTDIR\Demos\SimulationSettings\ParallelCC3DExamples\cellsort_3D_open_mp" RmDir "$INSTDIR\Demos\SimulationSettings\ParallelCC3DExamples\cellsort_2D_open_mp\Simulation" RmDir "$INSTDIR\Demos\SimulationSettings\ParallelCC3DExamples\cellsort_2D_open_mp" RmDir "$INSTDIR\Demos\SimulationSettings\ParallelCC3DExamples" RmDir "$INSTDIR\Demos\SimulationSettings\HexLattice\Simulation" RmDir "$INSTDIR\Demos\SimulationSettings\HexLattice" RmDir "$INSTDIR\Demos\SimulationSettings\FluctuationAmplitudePython\Simulation" RmDir "$INSTDIR\Demos\SimulationSettings\FluctuationAmplitudePython" RmDir "$INSTDIR\Demos\SimulationSettings\FluctuationAmplitude\Simulation" RmDir "$INSTDIR\Demos\SimulationSettings\FluctuationAmplitude" RmDir "$INSTDIR\Demos\SimulationSettings" RmDir "$INSTDIR\Demos\SBMLSolverExamples\SBMLSolverOscilatorDemo\Simulation" RmDir "$INSTDIR\Demos\SBMLSolverExamples\SBMLSolverOscilatorDemo" RmDir "$INSTDIR\Demos\SBMLSolverExamples\SBMLSolver\Simulation" RmDir "$INSTDIR\Demos\SBMLSolverExamples\SBMLSolver" RmDir "$INSTDIR\Demos\SBMLSolverExamples\DeltaNotch\Simulation" RmDir "$INSTDIR\Demos\SBMLSolverExamples\DeltaNotch" RmDir "$INSTDIR\Demos\SBMLSolverExamples" RmDir "$INSTDIR\Demos\PluginDemos\viscosity\Simulation" RmDir "$INSTDIR\Demos\PluginDemos\viscosity" RmDir "$INSTDIR\Demos\PluginDemos\RandomFieldInitializer\Simulation" RmDir "$INSTDIR\Demos\PluginDemos\RandomFieldInitializer" RmDir "$INSTDIR\Demos\PluginDemos\RandomBlobInitializer\Simulation" RmDir "$INSTDIR\Demos\PluginDemos\RandomBlobInitializer" RmDir "$INSTDIR\Demos\PluginDemos\PolarizationOrientationExample\Simulation" RmDir "$INSTDIR\Demos\PluginDemos\PolarizationOrientationExample" RmDir "$INSTDIR\Demos\PluginDemos\PixelTrackerExample\Simulation" RmDir "$INSTDIR\Demos\PluginDemos\PixelTrackerExample" RmDir "$INSTDIR\Demos\PluginDemos\oriented-cellsort\Simulation" RmDir "$INSTDIR\Demos\PluginDemos\oriented-cellsort" RmDir "$INSTDIR\Demos\PluginDemos\MomentOfInertia\MomentOfInertia3D\Simulation" RmDir "$INSTDIR\Demos\PluginDemos\MomentOfInertia\MomentOfInertia3D" RmDir "$INSTDIR\Demos\PluginDemos\MomentOfInertia\MomentOfInertia\Simulation" RmDir "$INSTDIR\Demos\PluginDemos\MomentOfInertia\MomentOfInertia" RmDir "$INSTDIR\Demos\PluginDemos\MomentOfInertia" RmDir "$INSTDIR\Demos\PluginDemos\GlobalBoundaryPixelTracker\Simulation" RmDir "$INSTDIR\Demos\PluginDemos\GlobalBoundaryPixelTracker" RmDir "$INSTDIR\Demos\PluginDemos\FPPDemo\Simulation" RmDir "$INSTDIR\Demos\PluginDemos\FPPDemo" RmDir "$INSTDIR\Demos\PluginDemos\FocalPointPlasticityPython\Simulation" RmDir "$INSTDIR\Demos\PluginDemos\FocalPointPlasticityPython" RmDir "$INSTDIR\Demos\PluginDemos\FocalPointPlasticityCustom\Simulation" RmDir "$INSTDIR\Demos\PluginDemos\FocalPointPlasticityCustom" RmDir "$INSTDIR\Demos\PluginDemos\FocalPointPlasticityCompartmentsPython\Simulation" RmDir "$INSTDIR\Demos\PluginDemos\FocalPointPlasticityCompartmentsPython" RmDir "$INSTDIR\Demos\PluginDemos\FocalPointPlasticity\FocalPointPlasticityCompartments\Simulation" RmDir "$INSTDIR\Demos\PluginDemos\FocalPointPlasticity\FocalPointPlasticityCompartments" RmDir "$INSTDIR\Demos\PluginDemos\FocalPointPlasticity\FocalPointPlasticity\Simulation" RmDir "$INSTDIR\Demos\PluginDemos\FocalPointPlasticity\FocalPointPlasticity" RmDir "$INSTDIR\Demos\PluginDemos\FocalPointPlasticity" RmDir "$INSTDIR\Demos\PluginDemos\FlexCellConstraints\Simulation" RmDir "$INSTDIR\Demos\PluginDemos\FlexCellConstraints" RmDir "$INSTDIR\Demos\PluginDemos\elongationTest_steering\Simulation" RmDir "$INSTDIR\Demos\PluginDemos\elongationTest_steering" RmDir "$INSTDIR\Demos\PluginDemos\elongationTest\elongationTest3D\Simulation" RmDir "$INSTDIR\Demos\PluginDemos\elongationTest\elongationTest3D" RmDir "$INSTDIR\Demos\PluginDemos\elongationTest\elongationTest\Simulation" RmDir "$INSTDIR\Demos\PluginDemos\elongationTest\elongationTest" RmDir "$INSTDIR\Demos\PluginDemos\elongationTest" RmDir "$INSTDIR\Demos\PluginDemos\elongationFlexTest\Simulation" RmDir "$INSTDIR\Demos\PluginDemos\elongationFlexTest" RmDir "$INSTDIR\Demos\PluginDemos\elasticityTest_steering\Simulation" RmDir "$INSTDIR\Demos\PluginDemos\elasticityTest_steering" RmDir "$INSTDIR\Demos\PluginDemos\elasticityTest\elasticityTestFlexExternalPotentialBoundaryWalker\Simulation" RmDir "$INSTDIR\Demos\PluginDemos\elasticityTest\elasticityTestFlexExternalPotentialBoundaryWalker" RmDir "$INSTDIR\Demos\PluginDemos\elasticityTest\elasticityTestFlexExternalPotential\Simulation" RmDir "$INSTDIR\Demos\PluginDemos\elasticityTest\elasticityTestFlexExternalPotential" RmDir "$INSTDIR\Demos\PluginDemos\elasticityTest\elasticityTest\Simulation" RmDir "$INSTDIR\Demos\PluginDemos\elasticityTest\elasticityTest" RmDir "$INSTDIR\Demos\PluginDemos\elasticityTest" RmDir "$INSTDIR\Demos\PluginDemos\CutomCellConstraints\Simulation" RmDir "$INSTDIR\Demos\PluginDemos\CutomCellConstraints" RmDir "$INSTDIR\Demos\PluginDemos\Curvature\Simulation" RmDir "$INSTDIR\Demos\PluginDemos\Curvature" RmDir "$INSTDIR\Demos\PluginDemos\ConvergentExtension\Simulation" RmDir "$INSTDIR\Demos\PluginDemos\ConvergentExtension" RmDir "$INSTDIR\Demos\PluginDemos\ContactMultiCad\Simulation" RmDir "$INSTDIR\Demos\PluginDemos\ContactMultiCad" RmDir "$INSTDIR\Demos\PluginDemos\ContactLocalProduct\ContactLocalProductVisExample\Simulation" RmDir "$INSTDIR\Demos\PluginDemos\ContactLocalProduct\ContactLocalProductVisExample" RmDir "$INSTDIR\Demos\PluginDemos\ContactLocalProduct\ContactLocalProductExampleCustomFunction\Simulation" RmDir "$INSTDIR\Demos\PluginDemos\ContactLocalProduct\ContactLocalProductExampleCustomFunction" RmDir "$INSTDIR\Demos\PluginDemos\ContactLocalProduct\ContactLocalProductExample\Simulation" RmDir "$INSTDIR\Demos\PluginDemos\ContactLocalProduct\ContactLocalProductExample" RmDir "$INSTDIR\Demos\PluginDemos\ContactLocalProduct" RmDir "$INSTDIR\Demos\PluginDemos\connectivityTest\Simulation" RmDir "$INSTDIR\Demos\PluginDemos\connectivityTest" RmDir "$INSTDIR\Demos\PluginDemos\ConnectivityGlobalTestLocalSettings\Simulation" RmDir "$INSTDIR\Demos\PluginDemos\ConnectivityGlobalTestLocalSettings" RmDir "$INSTDIR\Demos\PluginDemos\ConnectivityGlobalTest\ConnectivityGlobalTestFragmentedCells\Simulation" RmDir "$INSTDIR\Demos\PluginDemos\ConnectivityGlobalTest\ConnectivityGlobalTestFragmentedCells" RmDir "$INSTDIR\Demos\PluginDemos\ConnectivityGlobalTest\ConnectivityGlobalTest\Simulation" RmDir "$INSTDIR\Demos\PluginDemos\ConnectivityGlobalTest\ConnectivityGlobalTest" RmDir "$INSTDIR\Demos\PluginDemos\ConnectivityGlobalTest" RmDir "$INSTDIR\Demos\PluginDemos\CompartmentExample\CompartmentExampleNewStyle\Simulation" RmDir "$INSTDIR\Demos\PluginDemos\CompartmentExample\CompartmentExampleNewStyle" RmDir "$INSTDIR\Demos\PluginDemos\CompartmentExample\CompartmentExample\Simulation" RmDir "$INSTDIR\Demos\PluginDemos\CompartmentExample\CompartmentExample" RmDir "$INSTDIR\Demos\PluginDemos\CompartmentExample" RmDir "$INSTDIR\Demos\PluginDemos\chemotaxis_by_cell_id\Simulation" RmDir "$INSTDIR\Demos\PluginDemos\chemotaxis_by_cell_id" RmDir "$INSTDIR\Demos\PluginDemos\BoundaryPixelTrackerExample\Simulation" RmDir "$INSTDIR\Demos\PluginDemos\BoundaryPixelTrackerExample" RmDir "$INSTDIR\Demos\PluginDemos\BoundaryMonitorExample\Simulation" RmDir "$INSTDIR\Demos\PluginDemos\BoundaryMonitorExample" RmDir "$INSTDIR\Demos\PluginDemos\AdhesionFlexXML\Simulation" RmDir "$INSTDIR\Demos\PluginDemos\AdhesionFlexXML" RmDir "$INSTDIR\Demos\PluginDemos\AdhesionFlexPython\Simulation" RmDir "$INSTDIR\Demos\PluginDemos\AdhesionFlexPython" RmDir "$INSTDIR\Demos\PluginDemos" RmDir "$INSTDIR\Demos\ParameterScan\CellSorting\Simulation" RmDir "$INSTDIR\Demos\ParameterScan\CellSorting" RmDir "$INSTDIR\Demos\ParameterScan" RmDir "$INSTDIR\Demos\Models\wetFoamDrainage\Simulation" RmDir "$INSTDIR\Demos\Models\wetFoamDrainage" RmDir "$INSTDIR\Demos\Models\wetFoam\Simulation" RmDir "$INSTDIR\Demos\Models\wetFoam" RmDir "$INSTDIR\Demos\Models\FitzHughNagumo_OpenCL\Simulation" RmDir "$INSTDIR\Demos\Models\FitzHughNagumo_OpenCL" RmDir "$INSTDIR\Demos\Models\FitzHughNagumo\Simulation" RmDir "$INSTDIR\Demos\Models\FitzHughNagumo" RmDir "$INSTDIR\Demos\Models\dicty_40x40\Simulation" RmDir "$INSTDIR\Demos\Models\dicty_40x40" RmDir "$INSTDIR\Demos\Models\cellsort\cellsort_3D\Simulation" RmDir "$INSTDIR\Demos\Models\cellsort\cellsort_3D" RmDir "$INSTDIR\Demos\Models\cellsort\cellsort_2D_growing_cells_mitosis_using_steppable\Simulation" RmDir "$INSTDIR\Demos\Models\cellsort\cellsort_2D_growing_cells_mitosis_using_steppable" RmDir "$INSTDIR\Demos\Models\cellsort\cellsort_2D\Simulation" RmDir "$INSTDIR\Demos\Models\cellsort\cellsort_2D" RmDir "$INSTDIR\Demos\Models\cellsort" RmDir "$INSTDIR\Demos\Models\bacterium_macrophage_2D_steering\Simulation" RmDir "$INSTDIR\Demos\Models\bacterium_macrophage_2D_steering" RmDir "$INSTDIR\Demos\Models\bacterium_macrophage\Simulation" RmDir "$INSTDIR\Demos\Models\bacterium_macrophage" RmDir "$INSTDIR\Demos\Models\amoebae\amoebae_2D_secretion\Simulation" RmDir "$INSTDIR\Demos\Models\amoebae\amoebae_2D_secretion" RmDir "$INSTDIR\Demos\Models\amoebae\amoebae_2D_PlayerSettings\Simulation" RmDir "$INSTDIR\Demos\Models\amoebae\amoebae_2D_PlayerSettings" RmDir "$INSTDIR\Demos\Models\amoebae\amoebae_2D\Simulation" RmDir "$INSTDIR\Demos\Models\amoebae\amoebae_2D" RmDir "$INSTDIR\Demos\Models\amoebae" RmDir "$INSTDIR\Demos\Models" RmDir "$INSTDIR\Demos\CompuCellPythonTutorial\vectorPlot\Simulation" RmDir "$INSTDIR\Demos\CompuCellPythonTutorial\vectorPlot" RmDir "$INSTDIR\Demos\CompuCellPythonTutorial\TemplateDir\Simulation" RmDir "$INSTDIR\Demos\CompuCellPythonTutorial\TemplateDir" RmDir "$INSTDIR\Demos\CompuCellPythonTutorial\SteppableCommunication\Simulation" RmDir "$INSTDIR\Demos\CompuCellPythonTutorial\SteppableCommunication" RmDir "$INSTDIR\Demos\CompuCellPythonTutorial\steppableBasedMitosisPeriodicBC\Simulation" RmDir "$INSTDIR\Demos\CompuCellPythonTutorial\steppableBasedMitosisPeriodicBC" RmDir "$INSTDIR\Demos\CompuCellPythonTutorial\steppableBasedMitosis\Simulation" RmDir "$INSTDIR\Demos\CompuCellPythonTutorial\steppableBasedMitosis" RmDir "$INSTDIR\Demos\CompuCellPythonTutorial\scientificPlotsSimple\Simulation" RmDir "$INSTDIR\Demos\CompuCellPythonTutorial\scientificPlotsSimple" RmDir "$INSTDIR\Demos\CompuCellPythonTutorial\scientificPlots\Simulation" RmDir "$INSTDIR\Demos\CompuCellPythonTutorial\scientificPlots" RmDir "$INSTDIR\Demos\CompuCellPythonTutorial\scientificHistBarPlots\Simulation" RmDir "$INSTDIR\Demos\CompuCellPythonTutorial\scientificHistBarPlots" RmDir "$INSTDIR\Demos\CompuCellPythonTutorial\PythonPlugin\Simulation" RmDir "$INSTDIR\Demos\CompuCellPythonTutorial\PythonPlugin" RmDir "$INSTDIR\Demos\CompuCellPythonTutorial\PythonOnlySimulationsExamples\elasticitytest-player-new-syntax\Simulation" RmDir "$INSTDIR\Demos\CompuCellPythonTutorial\PythonOnlySimulationsExamples\elasticitytest-player-new-syntax" RmDir "$INSTDIR\Demos\CompuCellPythonTutorial\PythonOnlySimulationsExamples\diffusion-2D-new-syntax\Simulation" RmDir "$INSTDIR\Demos\CompuCellPythonTutorial\PythonOnlySimulationsExamples\diffusion-2D-new-syntax" RmDir "$INSTDIR\Demos\CompuCellPythonTutorial\PythonOnlySimulationsExamples\cellsort2DNewPlayer\Simulation" RmDir "$INSTDIR\Demos\CompuCellPythonTutorial\PythonOnlySimulationsExamples\cellsort2DNewPlayer" RmDir "$INSTDIR\Demos\CompuCellPythonTutorial\PythonOnlySimulationsExamples\cellsort-2D-player-new-syntax\Simulation" RmDir "$INSTDIR\Demos\CompuCellPythonTutorial\PythonOnlySimulationsExamples\cellsort-2D-player-new-syntax" RmDir "$INSTDIR\Demos\CompuCellPythonTutorial\PythonOnlySimulationsExamples\bacterium_macrophage-player-new-syntax\Simulation" RmDir "$INSTDIR\Demos\CompuCellPythonTutorial\PythonOnlySimulationsExamples\bacterium_macrophage-player-new-syntax" RmDir "$INSTDIR\Demos\CompuCellPythonTutorial\PythonOnlySimulationsExamples\amoebae-2D-new-syntax\Simulation" RmDir "$INSTDIR\Demos\CompuCellPythonTutorial\PythonOnlySimulationsExamples\amoebae-2D-new-syntax" RmDir "$INSTDIR\Demos\CompuCellPythonTutorial\PythonOnlySimulationsExamples" RmDir "$INSTDIR\Demos\CompuCellPythonTutorial\pressureField\Simulation" RmDir "$INSTDIR\Demos\CompuCellPythonTutorial\pressureField" RmDir "$INSTDIR\Demos\CompuCellPythonTutorial\NeighborTracker\Simulation" RmDir "$INSTDIR\Demos\CompuCellPythonTutorial\NeighborTracker" RmDir "$INSTDIR\Demos\CompuCellPythonTutorial\InfoPrinter\Simulation" RmDir "$INSTDIR\Demos\CompuCellPythonTutorial\InfoPrinter" RmDir "$INSTDIR\Demos\CompuCellPythonTutorial\GraphVTKVis\Simulation" RmDir "$INSTDIR\Demos\CompuCellPythonTutorial\GraphVTKVis" RmDir "$INSTDIR\Demos\CompuCellPythonTutorial\FiPyConcentrationTest\Simulation" RmDir "$INSTDIR\Demos\CompuCellPythonTutorial\FiPyConcentrationTest" RmDir "$INSTDIR\Demos\CompuCellPythonTutorial\FieldSecretion\Simulation" RmDir "$INSTDIR\Demos\CompuCellPythonTutorial\FieldSecretion" RmDir "$INSTDIR\Demos\CompuCellPythonTutorial\ExtraFields\Simulation" RmDir "$INSTDIR\Demos\CompuCellPythonTutorial\ExtraFields" RmDir "$INSTDIR\Demos\CompuCellPythonTutorial\ExtraAttribites\Simulation" RmDir "$INSTDIR\Demos\CompuCellPythonTutorial\ExtraAttribites" RmDir "$INSTDIR\Demos\CompuCellPythonTutorial\diffusion_extra_player_field\Simulation" RmDir "$INSTDIR\Demos\CompuCellPythonTutorial\diffusion_extra_player_field" RmDir "$INSTDIR\Demos\CompuCellPythonTutorial\diffusion\Simulation" RmDir "$INSTDIR\Demos\CompuCellPythonTutorial\diffusion" RmDir "$INSTDIR\Demos\CompuCellPythonTutorial\clusterSurface\Simulation" RmDir "$INSTDIR\Demos\CompuCellPythonTutorial\clusterSurface" RmDir "$INSTDIR\Demos\CompuCellPythonTutorial\clusterMitosisPeriodicBC\Simulation" RmDir "$INSTDIR\Demos\CompuCellPythonTutorial\clusterMitosisPeriodicBC" RmDir "$INSTDIR\Demos\CompuCellPythonTutorial\clusterMitosis\Simulation" RmDir "$INSTDIR\Demos\CompuCellPythonTutorial\clusterMitosis" RmDir "$INSTDIR\Demos\CompuCellPythonTutorial\cellsort_engulfment_2D\Simulation" RmDir "$INSTDIR\Demos\CompuCellPythonTutorial\cellsort_engulfment_2D" RmDir "$INSTDIR\Demos\CompuCellPythonTutorial\cellsort_2D\Simulation" RmDir "$INSTDIR\Demos\CompuCellPythonTutorial\cellsort_2D" RmDir "$INSTDIR\Demos\CompuCellPythonTutorial\CellMotility\Simulation" RmDir "$INSTDIR\Demos\CompuCellPythonTutorial\CellMotility" RmDir "$INSTDIR\Demos\CompuCellPythonTutorial\CellManipulation\Simulation" RmDir "$INSTDIR\Demos\CompuCellPythonTutorial\CellManipulation" RmDir "$INSTDIR\Demos\CompuCellPythonTutorial\cellInitializer\Simulation" RmDir "$INSTDIR\Demos\CompuCellPythonTutorial\cellInitializer" RmDir "$INSTDIR\Demos\CompuCellPythonTutorial\CellField\Simulation" RmDir "$INSTDIR\Demos\CompuCellPythonTutorial\CellField" RmDir "$INSTDIR\Demos\CompuCellPythonTutorial\CellDistance\Simulation" RmDir "$INSTDIR\Demos\CompuCellPythonTutorial\CellDistance" RmDir "$INSTDIR\Demos\CompuCellPythonTutorial\BuildWall3D\Simulation" RmDir "$INSTDIR\Demos\CompuCellPythonTutorial\BuildWall3D" RmDir "$INSTDIR\Demos\CompuCellPythonTutorial\BionetDemo\Simulation" RmDir "$INSTDIR\Demos\CompuCellPythonTutorial\BionetDemo" RmDir "$INSTDIR\Demos\CompuCellPythonTutorial" RmDir "$INSTDIR\Demos\BookChapterDemos_ComputationalMethodsInCellBiology\VascularTumor\Simulation" RmDir "$INSTDIR\Demos\BookChapterDemos_ComputationalMethodsInCellBiology\VascularTumor" RmDir "$INSTDIR\Demos\BookChapterDemos_ComputationalMethodsInCellBiology\DeltaNotch\Simulation" RmDir "$INSTDIR\Demos\BookChapterDemos_ComputationalMethodsInCellBiology\DeltaNotch" RmDir "$INSTDIR\Demos\BookChapterDemos_ComputationalMethodsInCellBiology\cellsorting\Simulation" RmDir "$INSTDIR\Demos\BookChapterDemos_ComputationalMethodsInCellBiology\cellsorting" RmDir "$INSTDIR\Demos\BookChapterDemos_ComputationalMethodsInCellBiology\Angiogenesis\Simulation" RmDir "$INSTDIR\Demos\BookChapterDemos_ComputationalMethodsInCellBiology\Angiogenesis" RmDir "$INSTDIR\Demos\BookChapterDemos_ComputationalMethodsInCellBiology" RmDir "$INSTDIR\Demos\BionetSolverExamples\TestCellDeath\Simulation" RmDir "$INSTDIR\Demos\BionetSolverExamples\TestCellDeath" RmDir "$INSTDIR\Demos\BionetSolverExamples\OscillatingContactEnergiesFlex\Simulation" RmDir "$INSTDIR\Demos\BionetSolverExamples\OscillatingContactEnergiesFlex" RmDir "$INSTDIR\Demos\BionetSolverExamples\OscillatingContactEnergies\Simulation" RmDir "$INSTDIR\Demos\BionetSolverExamples\OscillatingContactEnergies" RmDir "$INSTDIR\Demos\BionetSolverExamples\MultiscaleSimulation\Simulation" RmDir "$INSTDIR\Demos\BionetSolverExamples\MultiscaleSimulation" RmDir "$INSTDIR\Demos\BionetSolverExamples\DeltaNotchWithMitosis\Simulation" RmDir "$INSTDIR\Demos\BionetSolverExamples\DeltaNotchWithMitosis" RmDir "$INSTDIR\Demos\BionetSolverExamples" RmDir "$INSTDIR\Demos" RmDir "$INSTDIR\CellDraw\icons" RmDir "$INSTDIR\CellDraw\cc3Dhelpfiles\Simulation" RmDir "$INSTDIR\CellDraw\cc3Dhelpfiles" RmDir "$INSTDIR\CellDraw" RmDir "$INSTDIR\bin" ###################################################################### ### CUSTOM MODIFICATION Delete "$INSTDIR\uninstall-cc3d.exe" !ifdef WEB_SITE Delete "$INSTDIR\${APP_NAME} website.url" ; Delete "$INSTDIR\CellDraw_Documentation.url" !endif RmDir "$INSTDIR" !ifdef REG_START_MENU !insertmacro MUI_STARTMENU_GETFOLDER "Application" $SM_Folder Delete "$SMPROGRAMS\$SM_Folder\${APP_NAME}.lnk" Delete "$SMPROGRAMS\$SM_Folder\Uninstall ${APP_NAME}.lnk" Delete "$SMPROGRAMS\$SM_Folder\CellDraw.lnk" Delete "$SMPROGRAMS\$SM_Folder\Twedit++.lnk" !ifdef WEB_SITE ; Delete "$SMPROGRAMS\$SM_Folder\CellDraw Documentation.lnk" Delete "$SMPROGRAMS\$SM_Folder\${APP_NAME} Website.lnk" !endif Delete "$DESKTOP\${APP_NAME}.lnk" RmDir "$SMPROGRAMS\$SM_Folder" !endif DeleteRegKey ${REG_ROOT} "${REG_APP_PATH}" DeleteRegKey ${REG_ROOT} "${UNINSTALL_PATH}" SectionEnd ### END OF CUSTOM MODIFICATION ###################################################################### ###################################################################### ### CUSTOM MODIFICATION Function CheckPython27 strcpy $PYTHON_PATH27 "" ReadRegStr $PYTHON_PATH27 HKLM "SOFTWARE\Python\PythonCore\2.7\InstallPath" "" strcmp $PYTHON_PATH27 "" checkLocal found checkLocal: strcpy $PYTHON_PATH27 "" ReadRegStr $PYTHON_PATH27 HKCU "SOFTWARE\Python\PythonCore\2.7\InstallPath" "" strcmp $PYTHON_PATH27 "" notFound found found: ClearErrors goto exit notfound: #python probably not installed SetOutPath $INSTDIR\Prerequisites File "${INSTALLATION_SOURCE_DIR}\Prerequisites\python-2.7.1.msi" MessageBox MB_OK " Python27 IS NOT INSTALLED. Starting the installer..." ; ExecWait "$INSTDIR\Prerequisites\python-2.7.1.msi" ExecWait '"msiexec" /i "$INSTDIR\Prerequisites\python-2.7.1.msi"' goto recheckPython27 ; MessageBox MB_OK "Python 2.7 is required for CC3D but not present." ; Abort recheckPython27: strcpy $PYTHON_PATH27 "" ReadRegStr $PYTHON_PATH27 HKLM "SOFTWARE\Python\PythonCore\2.7\InstallPath" "" strcmp $PYTHON_PATH27 "" checkLocalInstalled foundInstalled checkLocalInstalled: strcpy $PYTHON_PATH27 "" ReadRegStr $PYTHON_PATH27 HKCU "SOFTWARE\Python\PythonCore\2.7\InstallPath" "" strcmp $PYTHON_PATH27 "" notFoundInstalled foundInstalled foundInstalled: ClearErrors goto exit notfoundInstalled: #python probably not installed MessageBox MB_OK "Python 2.7 still cannot be found. PLease install Python2.7 manuall and restart CC3D installer." Abort strcpy $PYTHON_PATH27 "" exit: FunctionEnd ### END OF CUSTOM MODIFICATION