Skip to content

Commit

Permalink
JuliaHSL -> libHSL
Browse files Browse the repository at this point in the history
  • Loading branch information
amontoison committed Jul 19, 2023
1 parent 3461aed commit 2992991
Show file tree
Hide file tree
Showing 6 changed files with 18 additions and 18 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# JuliaHSL
# libHSL

This is a dummy repository for the Julia HSL interface.

Expand Down
5 changes: 0 additions & 5 deletions dummy/juliahsl.c

This file was deleted.

8 changes: 0 additions & 8 deletions dummy/juliahsl.h

This file was deleted.

5 changes: 5 additions & 0 deletions dummy/libhsl.c
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
#include "libhsl.h"

bool LIBHSL_isfunctional(){
return false;
}
8 changes: 8 additions & 0 deletions dummy/libhsl.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
#include <stdbool.h>

#ifndef _LIBHSL_H_
#define _LIBHSL_H_

bool LIBHSL_isfunctional();

#endif /* _LIBHSL_H_ */
8 changes: 4 additions & 4 deletions dummy/meson.build
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
project(
'JuliaHSL',
'libHSL',
'c',
version: '1.0.0',
version: '2.0.0',
)

# Header
install_headers('juliahsl.h')
install_headers('libhsl.h')

# Library libhsl
libhsl = library('hsl',
sources : 'juliahsl.c',
sources : 'libhsl.c',
install : true)

0 comments on commit 2992991

Please sign in to comment.