forked from alexkulya/pandaria_5.4.8
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit 068b923
Showing
4,319 changed files
with
2,080,299 additions
and
0 deletions.
The diff you're trying to view is too large. We only load the first 3000 changed files.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
*.ini | ||
.vscode*/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
[patterns] | ||
**.cpp = LF | ||
**.h = LF | ||
**.sql = LF |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
build.*/.* | ||
|
||
syntax: glob | ||
*.orig | ||
*.rej |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
# Copyright (C) 2011-2016 Project SkyFire <http://www.projectskyfire.org/ | ||
# Copyright (C) 2008-2016 TrinityCore <http://www.trinitycore.org/> | ||
# | ||
# This file is free software; as a special exception the author gives | ||
# unlimited permission to copy and/or distribute it, with or without | ||
# modifications, as long as this notice is preserved. | ||
# | ||
# 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. | ||
|
||
language: cpp | ||
|
||
git: | ||
depth: 1 | ||
|
||
branches: | ||
only: | ||
- master | ||
|
||
compiler: | ||
- clang | ||
# - gcc ## Uncomment when we are up to full c++11 standards. | ||
|
||
before_install: | ||
- sudo add-apt-repository ppa:kalakris/cmake -y | ||
- sudo add-apt-repository ppa:ubuntu-toolchain-r/test -y | ||
- sudo apt-get update -qq | ||
- sudo apt-get install libace-dev | ||
- sudo apt-get install libncurses5-dev | ||
- sudo apt-get install build-essential autoconf libtool make cmake git-core patch wget links zip unzip unrar | ||
- sudo apt-get install openssl libssl-dev mysql-server mysql-client libmysqlclient15-dev libmysql++-dev libreadline6-dev zlib1g-dev libbz2-dev | ||
- if [ "$CXX" = "clang++" ]; then sudo apt-get install -qq libstdc++-4.8-dev; fi | ||
- if [ "$CXX" = "g++" ]; then sudo apt-get install -qq g++-4.8; fi | ||
- if [ "$CXX" = "g++" ]; then export CXX="g++-4.8" CC="gcc-4.8"; fi | ||
|
||
script: | ||
- mkdir build | ||
- cd build | ||
- cmake ../ -DSCRIPTS=1 -DTOOLS=1 | ||
- make -j8 | ||
|
||
notifications: | ||
irc: | ||
channels: | ||
- "irc.rizon.net#project_skyfire" | ||
on_success: always | ||
on_failure: always |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,103 @@ | ||
# Copyright (C) 2011-2016 Project SkyFire <http://www.projectskyfire.org/> | ||
# Copyright (C) 2008-2016 TrinityCore <http://www.trinitycore.org/> | ||
# | ||
# This file is free software; as a special exception the author gives | ||
# unlimited permission to copy and/or distribute it, with or without | ||
# modifications, as long as this notice is preserved. | ||
# | ||
# 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. | ||
|
||
# Before project or language initialization | ||
if (UNIX) | ||
if (EXISTS "/usr/bin/gcc-4.9") | ||
message (STATUS "gcc 4.9 found. Force switching to 4.8") | ||
if (NOT EXISTS "/usr/bin/gcc-4.8") | ||
message (FATAL_ERROR "gcc 4.8 not found") | ||
endif() | ||
if (NOT EXISTS "/usr/bin/g++-4.8") | ||
message (FATAL_ERROR "g++ 4.8 not installed") | ||
endif() | ||
set (CMAKE_C_COMPILER "/usr/bin/gcc-4.8") | ||
set (CMAKE_CXX_COMPILER "/usr/bin/g++-4.8") | ||
endif() | ||
endif() | ||
|
||
# Set projectname (must be done AFTER setting configurationtypes) | ||
project(Project_Skyfire) | ||
|
||
# CMake policies (can not be handled elsewhere) | ||
cmake_minimum_required(VERSION 2.8.9) | ||
cmake_policy(SET CMP0005 OLD) | ||
if(POLICY CMP0043) | ||
cmake_policy(SET CMP0043 OLD) # Disable 'Ignore COMPILE_DEFINITIONS_<Config> properties' | ||
endif(POLICY CMP0043) | ||
|
||
# add this options before PROJECT keyword | ||
set(CMAKE_DISABLE_SOURCE_CHANGES ON) | ||
set(CMAKE_DISABLE_IN_SOURCE_BUILD ON) | ||
|
||
# Set RPATH-handing (CMake parameters) | ||
set(CMAKE_SKIP_BUILD_RPATH 0) | ||
set(CMAKE_BUILD_WITH_INSTALL_RPATH 0) | ||
set(CMAKE_INSTALL_RPATH "${CMAKE_INSTALL_PREFIX}/lib") | ||
set(CMAKE_INSTALL_RPATH_USE_LINK_PATH 1) | ||
|
||
# set macro-directory | ||
set(CMAKE_MODULE_PATH "${CMAKE_SOURCE_DIR}/cmake/macros") | ||
|
||
# build in Release-mode by default if not explicitly set | ||
if( NOT CMAKE_BUILD_TYPE ) | ||
set(CMAKE_BUILD_TYPE "Release") | ||
endif() | ||
|
||
include(CheckCXXSourceRuns) | ||
include(CheckIncludeFiles) | ||
|
||
# set default buildoptions and print them | ||
include(cmake/options.cmake) | ||
|
||
# turn off PCH totally if enabled (hidden setting, mainly for devs) | ||
if( NOPCH ) | ||
set(USE_COREPCH 0) | ||
set(USE_SCRIPTPCH 0) | ||
endif() | ||
|
||
include(CheckPlatform) | ||
|
||
# basic packagesearching and setup (further support will be needed, this is a preliminary release!) | ||
set(OPENSSL_EXPECTED_VERSION 1.0.0) | ||
set(ACE_EXPECTED_VERSION 5.8.3) | ||
|
||
find_package(PCHSupport) | ||
find_package(ACE REQUIRED) | ||
find_package(OpenSSL REQUIRED) | ||
find_package(Threads REQUIRED) | ||
|
||
if( NOT USE_MYSQL_SOURCES ) | ||
find_package(MySQL REQUIRED) | ||
endif() | ||
|
||
if( UNIX ) | ||
find_package(Readline) | ||
find_package(ZLIB) | ||
find_package(BZip2) | ||
endif() | ||
|
||
set(Boost_USE_STATIC_LIBS ON) | ||
find_package(Boost COMPONENTS system locale filesystem thread regex | ||
REQUIRED | ||
) | ||
|
||
# Find revision ID and hash of the sourcetree | ||
include(cmake/genrev.cmake) | ||
|
||
# print out the results before continuing | ||
include(cmake/showoptions.cmake) | ||
|
||
# add dependencies | ||
add_subdirectory(dep) | ||
|
||
# add core sources | ||
add_subdirectory(src) |
Oops, something went wrong.