Added examples for binding functions and methods
[command.git] / examples / Makefile.am
1 noinst_PROGRAMS = \
2         functions \
3         methods
4
5 AM_CXXFLAGS = -std=c++11
6
7 functions_CPPFLAGS = \
8         -I$(top_srcdir)/include \
9         -Wall -pedantic -Wextra
10 functions_SOURCES = \
11         functions.cpp
12
13 methods_CPPFLAGS = \
14         -I$(top_srcdir)/include \
15         -Wall -pedantic -Wextra
16 methods_SOURCES = \
17         methods.cpp
18