Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
terasakisatoshi committed Jun 12, 2024
1 parent 361ebae commit 2032e69
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 73 deletions.
4 changes: 4 additions & 0 deletions cxxwrap4/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
libhello*
./deps/build
./deps/build.log
Manifest.toml
2 changes: 1 addition & 1 deletion cxxwrap4/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
FROM julia:1.10.4

RUN apt-get update && apt-get install -y --no-install-recommends build-essential cmake \
RUN apt-get update && apt-get install -y --no-install-recommends build-essential cmake libeigen3-dev \
&& apt-get clean && rm -rf /var/lib/apt/lists/*

RUN julia -e 'using Pkg; Pkg.add("CxxWrap"); Pkg.precompile()'
72 changes: 0 additions & 72 deletions cxxwrap4/Manifest.toml

This file was deleted.

4 changes: 4 additions & 0 deletions cxxwrap4/test/runtests.jl
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,8 @@ using MyCxxWrap4
x = rand(10)
v= MyCxxWrap4.twice(x)
@test 2x == v

x = rand(10)
v= MyCxxWrap4.twice(x)
@test 2x == v
end

0 comments on commit 2032e69

Please sign in to comment.