Skip to content

Commit

Permalink
C++: Navio: add library libnavio
Browse files Browse the repository at this point in the history
Add new Makefile, which build navio library
Add 'Wno-psabi' flag (nlohmann/json#658)
Add gitignore file
  • Loading branch information
Igor Anokhin authored and staroselskii committed Nov 17, 2017
1 parent d9e5ff2 commit f0d360d
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
*.o
*.a
6 changes: 6 additions & 0 deletions C++/Navio/Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
all:
g++ -std=c++11 -Wno-psabi -I . -c Common/*.cpp Navio2/*.cpp Navio+/*.cpp
ar rcs libnavio.a *.o
rm *.o
clean:
rm *.o

0 comments on commit f0d360d

Please sign in to comment.