-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
3461aed
commit 2992991
Showing
6 changed files
with
18 additions
and
18 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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. | ||
|
||
|
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
#include "libhsl.h" | ||
|
||
bool LIBHSL_isfunctional(){ | ||
return false; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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_ */ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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) |