Changeset f9393dc in sasview
- Timestamp:
- Feb 20, 2015 3:26:23 AM (10 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:
- 8a428fc
- Parents:
- c3caa49
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
run.py
r3a39c2e rf9393dc 103 103 # Put the source trees on the path 104 104 addpath(joinpath(root, 'src')) 105 addpath(joinpath(root, 'park-1.2.1'))106 105 107 106 # Import the sasview package from root/sasview as sas.sasview. It would … … 118 117 sas.pr.core = import_package('sas.pr.core', 119 118 joinpath(build_path, 'sas', 'pr', 'core')) 120 #import_dll('park._modeling', build_path)121 119 122 #park = import_package('park',os.path.join(build_path,'park'))123 120 124 121 # Pull the entire sas.models package from the build directory since it contains -
setup.py
r25f223b rf9393dc 207 207 ) ) 208 208 209 # sas.fit (park integration)209 # sas.fit 210 210 package_dir["sas.fit"] = os.path.join("src", "sas", "fit") 211 211 packages.append("sas.fit") … … 237 237 package_dir["sas.plottools"] = os.path.join("src", "sas", "plottools") 238 238 packages.append("sas.plottools") 239 240 # Park 1.2.1241 package_dir["park"]="park-1.2.1/park"242 packages.extend(["park"])243 package_data["park"] = ['park-1.2.1/*.txt', 'park-1.2.1/park.epydoc']244 ext_modules.append( Extension("park._modeling",245 sources = [ os.path.join("park-1.2.1",246 "park", "lib", "modeling.cc"),247 os.path.join("park-1.2.1",248 "park", "lib", "resolution.c"),249 ],250 ) )251 239 252 240 # sas models
Note: See TracChangeset
for help on using the changeset viewer.