summaryrefslogtreecommitdiffstats
path: root/CMakeScripts/Modules/sigcpp_test.cpp
diff options
context:
space:
mode:
authorEduard Braun <eduard.braun2@gmx.de>2017-02-04 23:13:08 +0000
committerEduard Braun <eduard.braun2@gmx.de>2017-02-04 23:13:08 +0000
commit94011e762ba541fb9b9733a9fc00a01442e374cf (patch)
tree01b823f7d39d5ce6155803cdeaacd3862f7c3a72 /CMakeScripts/Modules/sigcpp_test.cpp
parentFixes bug:1654808 along a option to fuse when paths points are coincidant (diff)
downloadinkscape-94011e762ba541fb9b9733a9fc00a01442e374cf.tar.gz
inkscape-94011e762ba541fb9b9733a9fc00a01442e374cf.zip
CMake: Remove duplicated check for sigc++
- It didn't make much sense to check twice anyway - The additional check for C++11 is not required anymore after r15039 as we use -std=c++11 by default now - The check broke subsequent cmake runs on Windows (i.e. compilation broke whenever a .cmake file changed and CMakeCache hat to be cleared manually) http://bazaar.launchpad.net/~inkscape.dev/inkscape/trunk/revision/15039 (bzr r15475)
Diffstat (limited to '')
-rw-r--r--CMakeScripts/Modules/sigcpp_test.cpp15
1 files changed, 0 insertions, 15 deletions
diff --git a/CMakeScripts/Modules/sigcpp_test.cpp b/CMakeScripts/Modules/sigcpp_test.cpp
deleted file mode 100644
index b4cf2c773..000000000
--- a/CMakeScripts/Modules/sigcpp_test.cpp
+++ /dev/null
@@ -1,15 +0,0 @@
-/*
- * 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;
-}