Skip to content

Commit 0ad927f

Browse files
Change name of sscha executable to sscha.x so it doesn't have the same name as the python library
1 parent c20d8c6 commit 0ad927f

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

meson.build

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -228,15 +228,15 @@ py.install_sources([
228228
'Modules/Tools.py',
229229
'Modules/Utilities.py'
230230
],
231-
subdir: 'python-sscha',
231+
subdir: 'sscha',
232232
)
233233

234234
# --- Installing Scripts ---
235235
# Meson is great for installing scripts and making them executable.
236236
# Scripts will be installed in the `bin` directory of the Python environment (e.g., venv/bin/).
237237

238238
py.install_sources([
239-
'scripts/sscha',
239+
'scripts/sscha.x',
240240
'scripts/cluster_check.x',
241241
'scripts/plot_frequencies.py',
242242
'scripts/sscha-plot-data.py',
@@ -250,7 +250,7 @@ py.install_sources([
250250
# and copy the .jl files there.
251251
install_data(
252252
['Modules/fourier_gradient.jl'], # List the .jl files you need
253-
install_dir : py.get_install_dir() / 'python-sscha'
253+
install_dir : py.get_install_dir() / 'sscha'
254254
)
255255
# If there are many .jl files in multiple subdirectories,
256256
# you would need to use 'install_subdir' or list them all explicitly.
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)