Skip to content

Commit

Permalink
added build script to use Linux repository installed libs
Browse files Browse the repository at this point in the history
  • Loading branch information
Michael Gautier committed Sep 4, 2017
1 parent 6251aa6 commit bef77f5
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions mk_build/build.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
reset

g++ -std=c++14 -c -fPIC -g -I../src/ -o icmw.o ../src/icmw.cxx
g++ -std=c++14 -c -fPIC -g -I../src/ -I/usr/include/libxml2 -o gautier_rss_model.o ../src/gautier_rss_model.cxx
g++ -std=c++14 -c -fPIC -g -I../src/ -o gautier_rss.o ../src/main.cxx

g++ -g -I../src/ -I/usr/include/libxml2 -lxml2 -lsqlite3 -lfltk -o gautier_rss gautier_rss_model.o gautier_rss.o icmw.o

0 comments on commit bef77f5

Please sign in to comment.