diff --git a/CMakeLists.txt b/CMakeLists.txt index 554c7fc..633063f 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -21,7 +21,6 @@ else() endif() - set(CMAKE_VERBOSE_MAKEFILE ON) @@ -42,9 +41,6 @@ include_directories(src) include_directories(tests) - - - # ------------------------------------------------------------------------------ # Warnings # ------------------------------------------------------------------------------ @@ -82,8 +78,6 @@ else() endif() - - # ------------------------------------------------------------------------------ # Sources and executables # ------------------------------------------------------------------------------ @@ -109,8 +103,6 @@ set(FORT_DEV_SOURCES src/wcwidth.c) - - set(EXAMPLE_SOURCES example/main.c) add_executable(${PROJECT_NAME}_example @@ -222,7 +214,6 @@ if("${FORT_COMPILER}" STREQUAL "GNU" OR "${FORT_COMPILER}" STREQUAL "Clang") endif() - # Hack for some gcc versions if("${FORT_COMPILER}" STREQUAL "GNU") set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -fuse-ld=gold") @@ -230,7 +221,6 @@ if("${FORT_COMPILER}" STREQUAL "GNU") endif() - # ------------------------------------------------------------------------------ # Astyle # ------------------------------------------------------------------------------ @@ -294,5 +284,4 @@ if(FORT_ENABLE_ASTYLE) COMMENT "running astyle" ) endif() - endif()