File tree Expand file tree Collapse file tree 1 file changed +19
-0
lines changed Expand file tree Collapse file tree 1 file changed +19
-0
lines changed Original file line number Diff line number Diff line change 64
64
* @code
65
65
* g++ program.cc -o program `pkg-config --cflags --libs sigc++-2.0`
66
66
* @endcode
67
+ * If your version of g++ is not C++11-compliant be default,
68
+ * add the @c -std=c++11 option.
69
+ *
70
+ * @subsection meson Using Meson
71
+ *
72
+ * If using <a href="https://mesonbuild.com/">Meson</a>, include the following
73
+ * in @c meson.build:
74
+ * @code
75
+ * sigc_dep = dependency('sigc++-2.0')
76
+ * program_name = 'program'
77
+ * cpp_sources = [ 'program.cc' ]
78
+ * executable(program_name,
79
+ * cpp_sources,
80
+ * dependencies: sigc_dep
81
+ * )
82
+ * @endcode
83
+ *
84
+ * Your @c dependencies: keyword argument should also mention any other libraries
85
+ * that you need to use.
67
86
*
68
87
* @subsection autotools Using Autotools
69
88
*
You can’t perform that action at this time.
0 commit comments