From fce867529d8b174a75f9c576af33b94dceffc5a0 Mon Sep 17 00:00:00 2001 From: slowy07 Date: Wed, 9 Oct 2024 06:05:33 +0700 Subject: [PATCH] fix(CMakeLists): memperbaiki parameter cmake Signed-off-by: slowy07 --- CMakeLists.txt | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index e0b85f5..40be307 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -2,15 +2,15 @@ cmake_minimum_required(VERSION 3.16) project(bellshadeFortran LANGUAGES Fortran) add_compile_options( - -Wall - -Wextra - -Wpedantic - -Waliasing - -Wconversion-extra - -Wimplicit-interface - -Wimplcit-procedure - -Wsuprising - -Werror + -Wall + -Wextra + -Wpedantic + -Waliasing + -Wconversion-extra + -Wimplicit-interface + -Wimplicit-procedure + -Wsurprising + -Werror ) function(source_fortran DIR SOURCES)