Skip to content

Commit

Permalink
disable windows
Browse files Browse the repository at this point in the history
  • Loading branch information
kjmeagher committed Nov 2, 2024
1 parent 9483aec commit 2d8a365
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions subprojects/packagefiles/cfitsio/meson.build
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ deps = [libm,zlib]
has_fortran = false

if host_machine.system() == 'windows'
error('windows disabled for now')
has_fortran = false
add_project_arguments('-Dcfitsio_EXPORTS', language: 'c')
else
Expand Down Expand Up @@ -220,14 +221,14 @@ if get_option('utils')
'fpack',
'utilities/fpack.c',
'utilities/fpackutil.c',
dependencies: cfitsio_dep,
dependencies: [libm, cfitsio_dep],
install: true,
)
executable(
'funpack',
'utilities/funpack.c',
'utilities/fpackutil.c',
dependencies: cfitsio_dep,
dependencies: [libm,cfitsio_dep],
link_with: libcfitsio,
install: true,
)
Expand Down

0 comments on commit 2d8a365

Please sign in to comment.