about summary refs log tree commit diff
path: root/third_party/glog/toolchains/mingw-cxx11.cmake
diff options
context:
space:
mode:
Diffstat (limited to 'third_party/glog/toolchains/mingw-cxx11.cmake')
-rw-r--r--third_party/glog/toolchains/mingw-cxx11.cmake13
1 files changed, 13 insertions, 0 deletions
diff --git a/third_party/glog/toolchains/mingw-cxx11.cmake b/third_party/glog/toolchains/mingw-cxx11.cmake
new file mode 100644
index 0000000000..873f623f60
--- /dev/null
+++ b/third_party/glog/toolchains/mingw-cxx11.cmake
@@ -0,0 +1,13 @@
+# Sample toolchain file for building with gcc compiler
+#
+# Typical usage:
+#    *) cmake -H. -B_build -DCMAKE_TOOLCHAIN_FILE="%cd%\toolchains\mingw.cmake"
+
+# set compiler
+set(CMAKE_C_COMPILER gcc)
+set(CMAKE_CXX_COMPILER g++)
+
+# set c++ standard
+set(CMAKE_CXX_STANDARD 11)
+set(CMAKE_CXX_STANDARD_REQUIRED ON)
+set(CMAKE_CXX_EXTENSIONS OFF)