diff options
author | Kargatum <dowlandtop@yandex.com> | 2019-09-21 18:25:56 +0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-09-21 18:25:56 +0700 |
commit | 3518c9e9f5c80a660bbcea055fbbde10499c16ca (patch) | |
tree | 1bbb40c02bdfeeab3ac40ef7b2410fe9a4bbfd35 /CMakeLists.txt | |
parent | bd4f8b5b14991b2d554e92526761d3ed02b27eb7 (diff) |
feat(Cmake): set minimal support version 3.8 and added interface libs for world and auth (#2295)
* Added interface library authserver-interface
* Added interfaca library worldserver-interface
* Added Copyright's in auth and world server Cmake's files
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r-- | CMakeLists.txt | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index c3764dd7d9..1c5405080d 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,3 +1,4 @@ +# # Copyright (C) 2016+ AzerothCore <www.azerothcore.org>, released under GNU AGPL3 v3 license: https://github.com/azerothcore/azerothcore-wotlk/blob/master/LICENSE-AGPL3 # # This file is free software; as a special exception the author gives @@ -7,12 +8,15 @@ # This program is distributed in the hope that it will be useful, but # WITHOUT ANY WARRANTY, to the extent permitted by law; without even the # implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. +# # Set projectname (must be done AFTER setting configurationtypes) project(AzerothCore) +# Require a min version Cmake +cmake_minimum_required(VERSION 3.8) + # CMake policies (can not be handled elsewhere) -cmake_minimum_required(VERSION 2.8) cmake_policy(SET CMP0005 OLD) # add this options before PROJECT keyword |