clarify shared library

master
Daniel Kolesa 2016-02-25 23:57:26 +09:00
parent 04ab14e4ab
commit 4e1b25a90a
1 changed files with 4 additions and 1 deletions

View File

@ -15,6 +15,9 @@ You can compile your application with it like:
c++ myapp.cc cubescript.cc -o myapp -std=c++14 -Wall -Wextra -I. -Ipath/to/octastd
It also supports building as a shared library.
It also supports building as a shared library. To do that, use the following
command line:
c++ cubescript.cc -o libcubescript.so -std=c++14 -Wall -Wextra -I. -Ipath/to/octastd -shared -fPIC
See COPYING.md for licensing information.