aboutsummaryrefslogtreecommitdiffstats
path: root/sources/pyside2/cmake/Macros/icecc.cmake
diff options
context:
space:
mode:
Diffstat (limited to 'sources/pyside2/cmake/Macros/icecc.cmake')
-rw-r--r--sources/pyside2/cmake/Macros/icecc.cmake11
1 files changed, 0 insertions, 11 deletions
diff --git a/sources/pyside2/cmake/Macros/icecc.cmake b/sources/pyside2/cmake/Macros/icecc.cmake
deleted file mode 100644
index b2bf071aa..000000000
--- a/sources/pyside2/cmake/Macros/icecc.cmake
+++ /dev/null
@@ -1,11 +0,0 @@
-include (CMakeForceCompiler)
-option(ENABLE_ICECC "Enable icecc checking, for distributed compilation")
-if (ENABLE_ICECC)
- find_program(ICECC icecc)
- if (ICECC)
- message(STATUS "icecc found! Distributed compilation for all!! huhuhu.")
- cmake_force_cxx_compiler(${ICECC} icecc)
- else(ICECC)
- message(FATAL_ERROR "icecc NOT found! re-run cmake without -DENABLE_ICECC")
- endif(ICECC)
-endif(ENABLE_ICECC)