summaryrefslogtreecommitdiff
path: root/cmake
diff options
context:
space:
mode:
Diffstat (limited to 'cmake')
-rw-r--r--cmake/compiler_warnings.cmake7
1 files changed, 0 insertions, 7 deletions
diff --git a/cmake/compiler_warnings.cmake b/cmake/compiler_warnings.cmake
deleted file mode 100644
index bc557eb..0000000
--- a/cmake/compiler_warnings.cmake
+++ /dev/null
@@ -1,7 +0,0 @@
-function(set_project_warnings target)
- if (MSVC)
- target_compile_options(${target} PRIVATE /W4 /permissive-)
- else()
- target_compile_options(${target} PRIVATE -Wall -Wextra -Wpedantic -Werror)
- endif()
-endfunction()