Changes in / [7132e49:2d03814] in sasview
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
sasview/setup_exe.py
ra1b8fee ra1b8fee 179 179 test_1d_dir = os.path.join(path, "test\\1d_data") 180 180 test_2d_dir = os.path.join(path, "test\\2d_data") 181 test_sesans_dir = os.path.join(path, "test\\sesans_data") 182 test_convertible_dir = os.path.join(path, "test\\convertible_data") 181 183 test_save_dir = os.path.join(path, "test\\save_states") 182 test_upcoming_dir = os.path.join(path, "test\\upcoming_formats") 184 test_coord_dir = os.path.join(path, "test\\coordinate_data") 185 test_image_dir = os.path.join(path, "test\\image_data") 186 test_other_dir = os.path.join(path, "test\\other_files") 183 187 184 188 matplotlibdatadir = matplotlib.get_data_path() … … 273 277 # Copying the images directory to the distribution directory. 274 278 for f in findall(images_dir): 275 if not ".svn" in f: 276 data_files.append(("images", [f])) 279 data_files.append(("images", [f])) 277 280 278 281 # Copying the HTML help docs 279 282 for f in findall(media_dir): 280 if not ".svn" in f: 281 data_files.append(("media", [f])) 282 283 # Copying the sample data user data 283 data_files.append(("media", [f])) 284 285 # Copying the sample user data 284 286 for f in findall(test_1d_dir): 285 if not ".svn" in f: 286 data_files.append(("test\\1d_data", [f])) 287 288 # Copying the sample data user data 287 data_files.append(("test\\1d_data", [f])) 289 288 for f in findall(test_2d_dir): 290 if not ".svn" in f: 291 data_files.append(("test\\2d_data", [f])) 292 293 # Copying the sample data user data 289 data_files.append(("test\\2d_data", [f])) 294 290 for f in findall(test_save_dir): 295 if not ".svn" in f: 296 data_files.append(("test\\save_states", [f])) 297 298 # Copying the sample data user data 299 for f in findall(test_upcoming_dir): 300 if not ".svn" in f: 301 data_files.append(("test\\upcoming_formats", [f])) 291 data_files.append(("test\\save_states", [f])) 292 for f in findall(test_sesans_dir): 293 data_files.append(("test\\sesans_data", [f])) 294 for f in findall(test_convertible_dir): 295 data_files.append(("test\\convertible_files", [f])) 296 for f in findall(test_coord_dir): 297 data_files.append(("test\\coordinate_data", [f])) 298 for f in findall(test_image_dir): 299 data_files.append(("test\\image_data", [f])) 300 for f in findall(test_other_dir): 301 data_files.append(("test\\other_files", [f])) 302 302 303 303 # Copying opencl include files
Note: See TracChangeset
for help on using the changeset viewer.