Changeset ae3e17e in sasview for calculatorview/setup_exe.py


Ignore:
Timestamp:
Aug 5, 2011 6:49:46 PM (13 years ago)
Author:
Jae Cho <jhjcho@…>
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:
814524b
Parents:
17175ad
Message:

standalone builder

File:
1 edited

Legend:

Unmodified
Added
Removed
  • calculatorview/setup_exe.py

    r3be3a80 rae3e17e  
    9494    if os.path.split(f)[0].count('.svn')==0: 
    9595        data_files.append((os.path.split(f)[0], [f])) 
    96  
     96import sans.guiframe as guiframe 
     97data_files += guiframe.data_files() 
    9798# Copy the settings file for the DataLoader file extension associations 
    9899import DataLoader.readers 
     
    100101if os.path.isfile(f): 
    101102    data_files.append(('.', [f])) 
    102  
     103f = 'custom_config.py' 
     104if os.path.isfile(f): 
     105    data_files.append(('.', [f])) 
    103106 
    104107# Copying the HTML help docs 
Note: See TracChangeset for help on using the changeset viewer.