Changeset 230178b in sasview


Ignore:
Timestamp:
May 20, 2016 7:53:09 AM (8 years ago)
Author:
piotr
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
Message:

added pyopencl include files

File:
1 edited

Legend:

Unmodified
Added
Removed
  • sasview/setup_exe.py

    r0c10782 r230178b  
    235235matplotlibdatadir = matplotlib.get_data_path() 
    236236matplotlibdata = findall(matplotlibdatadir) 
     237 
     238from distutils.sysconfig import get_python_lib 
     239site_loc = get_python_lib() 
     240opencl_include_dir = os.path.join(site_loc, "pyopencl", "cl") 
     241 
    237242data_files = [] 
    238243# Copying SLD data 
     
    320325        data_files.append(("test\\upcoming_formats", [f])) 
    321326 
     327# Copying opencl include files 
     328for f in findall(opencl_include_dir): 
     329    data_files.append(("includes\\pyopencl",[f])) 
    322330 
    323331# See if the documentation has been built, and if so include it. 
Note: See TracChangeset for help on using the changeset viewer.