-
Notifications
You must be signed in to change notification settings - Fork 56
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #49 from robertu94/static_libs
CMake can now build SZ statically
- Loading branch information
Showing
6 changed files
with
31 additions
and
3 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 |
---|---|---|
@@ -0,0 +1 @@ | ||
build.* |
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
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
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,23 @@ | ||
FROM centos:7 | ||
RUN yum update -y && \ | ||
yum install -y epel-release && \ | ||
yum install -y \ | ||
cmake3 \ | ||
CUnit-devel \ | ||
ctags \ | ||
gcc \ | ||
gcc-c++ \ | ||
fftw-devel \ | ||
netcdf-devel \ | ||
make \ | ||
swig3 \ | ||
python-devel \ | ||
numpy && \ | ||
yum clean all | ||
COPY . /build/ | ||
WORKDIR /build/ | ||
RUN rm -rf build && \ | ||
mkdir -p build && \ | ||
cd build && \ | ||
cmake3 .. && \ | ||
make -j |
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
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 @@ | ||
add_library (SZ SHARED | ||
add_library (SZ | ||
src/ArithmeticCoding.c | ||
src/ByteToolkit.c | ||
src/CacheTable.c | ||
|