Changeset 230178b in sasview
- Timestamp:
- May 20, 2016 9:53:09 AM (9 years ago)
- Branches:
- master, ESS_GUI, ESS_GUI_Docs, ESS_GUI_batch_fitting, ESS_GUI_bumps_abstraction, ESS_GUI_iss1116, ESS_GUI_iss879, ESS_GUI_iss959, ESS_GUI_opencl, ESS_GUI_ordering, ESS_GUI_sync_sascalc, costrafo411, magnetic_scatt, release-4.1.1, release-4.1.2, release-4.2.2, release_4.0.1, ticket-1009, ticket-1094-headless, ticket-1242-2d-resolution, ticket-1243, ticket-1249, ticket885, unittest-saveload
- Children:
- 66f21cd
- Parents:
- 0c10782
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
sasview/setup_exe.py
r0c10782 r230178b 235 235 matplotlibdatadir = matplotlib.get_data_path() 236 236 matplotlibdata = findall(matplotlibdatadir) 237 238 from distutils.sysconfig import get_python_lib 239 site_loc = get_python_lib() 240 opencl_include_dir = os.path.join(site_loc, "pyopencl", "cl") 241 237 242 data_files = [] 238 243 # Copying SLD data … … 320 325 data_files.append(("test\\upcoming_formats", [f])) 321 326 327 # Copying opencl include files 328 for f in findall(opencl_include_dir): 329 data_files.append(("includes\\pyopencl",[f])) 322 330 323 331 # See if the documentation has been built, and if so include it.
Note: See TracChangeset
for help on using the changeset viewer.