Changeset 3c505e6 in sasmodels
- Timestamp:
- May 3, 2016 5:38:29 AM (9 years ago)
- Branches:
- master, core_shell_microgels, costrafo411, magnetic_model, release_v0.94, release_v0.95, ticket-1257-vesicle-product, ticket_1156, ticket_1265_superball, ticket_822_more_unit_tests
- Children:
- 82c37f5
- Parents:
- 3ecf034 (diff), b1281d8 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent. - Files:
-
- 1 added
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
sasmodels/kerneldll.py
rff97458 r3ecf034 92 92 # Windows-specific solution 93 93 if os.name == 'nt': 94 # Assume the default location of module DLLs is in top level /models dir. 95 # Relying on the Windows installer placing target items in the right place 96 DLL_PATH = os.path.join(os.path.split(os.path.realpath(sys.argv[0]))[0], "models") 94 # Assume the default location of module DLLs is in .sasmodels/compiled_models. 95 DLL_PATH = os.path.join(os.path.expanduser("~"), ".sasmodels", "compiled_models") 96 if not os.path.exists(DLL_PATH): 97 os.makedirs(DLL_PATH) 97 98 else: 98 99 # Set up the default path for compiled modules.
Note: See TracChangeset
for help on using the changeset viewer.