Changes in / [66b63ee:d838715] in sasview
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
build_tools/conda/README.md
rcf20539 r981a1d4 48 48 # $ conda config --set binstar_upload yes 49 49 ``` 50 51 # Useful Links52 53 * http://conda.pydata.org/docs/build.html -
build_tools/conda/pyopencl/bld.bat
rd7ee8b9b r20b238df 1 xcopy %RECIPE_DIR%\bin %PREFIX%\DLLs /E2 xcopy %RECIPE_DIR%\include %PREFIX%\include /E3 xcopy %RECIPE_DIR%\lib %PREFIX%\libs /E4 5 xcopy %RECIPE_DIR%\bin %PREFIX%\Library\bin /E6 xcopy %RECIPE_DIR%\include %PREFIX%\Library\include /E7 xcopy %RECIPE_DIR%\lib %PREFIX%\Library\lib /E8 9 ::"%PYTHON%" setup.py build -cmingw3210 "%PYTHON%" configure.py11 if errorlevel 1 exit 112 "%PYTHON%" setup.py build13 if errorlevel 1 exit 114 1 "%PYTHON%" setup.py install 15 2 if errorlevel 1 exit 1 -
sasview/setup_exe.py
r61c93b3 r61c93b3 280 280 # Copying the images directory to the distribution directory. 281 281 for f in findall(images_dir): 282 if not ".svn" in f:282 if os.path.split(f)[0].count('.svn')==0: 283 283 data_files.append(("images", [f])) 284 284 285 285 # Copying the HTML help docs 286 286 for f in findall(media_dir): 287 if not ".svn" in f:287 if os.path.split(f)[0].count('.svn')==0: 288 288 data_files.append(("media", [f])) 289 289 290 290 # Copying the sample data user data 291 291 for f in findall(test_dir): 292 if not ".svn" in f:292 if os.path.split(f)[0].count('.svn')==0: 293 293 data_files.append(("test", [f])) 294 294
Note: See TracChangeset
for help on using the changeset viewer.