Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'build_files')
-rw-r--r--build_files/cmake/macros.cmake11
1 files changed, 0 insertions, 11 deletions
diff --git a/build_files/cmake/macros.cmake b/build_files/cmake/macros.cmake
index edc5cf925c9..00313ba36d7 100644
--- a/build_files/cmake/macros.cmake
+++ b/build_files/cmake/macros.cmake
@@ -799,17 +799,6 @@ macro(TEST_SSE_SUPPORT
unset(CMAKE_REQUIRED_FLAGS)
endmacro()
-macro(TEST_STDBOOL_SUPPORT)
- include(CheckCSourceRuns)
-
- # This program will compile correctly if and only if
- # this C compiler supports C99 stdbool.
- check_c_source_runs("
- #include <stdbool.h>
- int main(void) { return (int)false; }"
- HAVE_STDBOOL_H)
-endmacro()
-
# Only print message if running CMake first time
macro(message_first_run)
if(FIRST_RUN)