summaryrefslogtreecommitdiffstats
path: root/CMakeScripts/Modules/sigcpp_test.cpp
diff options
context:
space:
mode:
authorBryce Harrington <bryce@bryceharrington.org>2016-02-27 09:25:50 +0000
committerbryce <bryce@bryceharrington.org>2016-02-27 09:25:50 +0000
commit53a4d10251bb079fa22ced4dcbb381f42f56ceb1 (patch)
tree364b09b8902cdeaa0fa6d41b40d4833b2a4f3dfe /CMakeScripts/Modules/sigcpp_test.cpp
parentinkview: Drop use of obsolete getopt (diff)
downloadinkscape-53a4d10251bb079fa22ced4dcbb381f42f56ceb1.tar.gz
inkscape-53a4d10251bb079fa22ced4dcbb381f42f56ceb1.zip
cmake: Add sigc++ support
Patch from rindolf Signed-off-by: Bryce Harrington <bryce@bryceharrington.org> (bzr r14669)
Diffstat (limited to 'CMakeScripts/Modules/sigcpp_test.cpp')
-rw-r--r--CMakeScripts/Modules/sigcpp_test.cpp15
1 files changed, 15 insertions, 0 deletions
diff --git a/CMakeScripts/Modules/sigcpp_test.cpp b/CMakeScripts/Modules/sigcpp_test.cpp
new file mode 100644
index 000000000..b4cf2c773
--- /dev/null
+++ b/CMakeScripts/Modules/sigcpp_test.cpp
@@ -0,0 +1,15 @@
+/*
+ * Building this using:
+
+ g++ `pkg-config --cflags sigc++-2.0` sigcpp_test.cpp
+
+ Results in an error.
+ * */
+#include <stddef.h>
+#include <string>
+#include <sigc++/signal.h>
+
+int main()
+{
+ return 0;
+}