[CMakeLists.txt] Move project below cmake_minimum_required; fix indentation in its if/else block; [tap-driver.sh] Copyright line update (was automatic with ./autogen.sh)

This commit is contained in:
Samuel Marks 2020-05-23 17:16:04 +10:00
parent c4ec6b241b
commit 12a400c90d
No known key found for this signature in database
GPG Key ID: 43FD8EDE42E1A799
2 changed files with 7 additions and 6 deletions

View File

@ -1,9 +1,12 @@
if(MSVC) if(MSVC)
cmake_minimum_required (VERSION 3.16.4) cmake_minimum_required (VERSION 3.16.4)
cmake_policy(SET CMP0091 NEW) cmake_policy(SET CMP0091 NEW)
else() else()
cmake_minimum_required (VERSION 3.0) cmake_minimum_required (VERSION 3.0)
endif() endif()
project (LibreSSL C ASM)
include(CheckFunctionExists) include(CheckFunctionExists)
include(CheckSymbolExists) include(CheckSymbolExists)
include(CheckLibraryExists) include(CheckLibraryExists)
@ -14,8 +17,6 @@ set(CMAKE_MODULE_PATH "${CMAKE_CURRENT_SOURCE_DIR}" ${CMAKE_MODULE_PATH})
include(cmake_export_symbol) include(cmake_export_symbol)
include(GNUInstallDirs) include(GNUInstallDirs)
project (LibreSSL C ASM)
enable_testing() enable_testing()
file(READ ${CMAKE_CURRENT_SOURCE_DIR}/ssl/VERSION SSL_VERSION) file(READ ${CMAKE_CURRENT_SOURCE_DIR}/ssl/VERSION SSL_VERSION)

View File

@ -1,5 +1,5 @@
#! /bin/sh #! /bin/sh
# Copyright (C) 2011-2018 Free Software Foundation, Inc. # Copyright (C) 2011-2020 Free Software Foundation, Inc.
# #
# This program is free software; you can redistribute it and/or modify # This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by # it under the terms of the GNU General Public License as published by