b1bba2e201
When I initially released this project, I released it under my own copyright. I have since then worked on it in my 20% time at Google (and want to continue doing this) and my life becomes much simpler if the copyright is Google's. From the perspective of how this project is run and managed, **NOTHING** changes. YCM is not a Google product, merely a project run by someone who just happens to work for Google. Please note that the license of the project is **NOT** changing. People sending in future pull requests will have to sign the Google [CLA](https://developers.google.com/open-source/cla/individual) (you can sign online at the bottom of that page) before those pull requests could be merged in. People who sent in pull requests that were merged in the past will get an email from me asking them to sign the CLA as well.
110 lines
3.2 KiB
CMake
110 lines
3.2 KiB
CMake
# Copyright (C) 2011, 2012 Google Inc.
|
|
#
|
|
# This file is part of YouCompleteMe.
|
|
#
|
|
# YouCompleteMe is free software: you can redistribute it and/or modify
|
|
# it under the terms of the GNU General Public License as published by
|
|
# the Free Software Foundation, either version 3 of the License, or
|
|
# (at your option) any later version.
|
|
#
|
|
# YouCompleteMe is distributed in the hope that it will be useful,
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
# GNU General Public License for more details.
|
|
#
|
|
# You should have received a copy of the GNU General Public License
|
|
# along with YouCompleteMe. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
# The interesting parts of Boost have been extracted using
|
|
# the BCP tool:
|
|
# http://www.boost.org/doc/libs/1_54_0/tools/bcp/doc/html/index.html
|
|
#
|
|
# See the top-level update_boost.sh script for details on how bcp is called to
|
|
# generate BoostParts.
|
|
|
|
cmake_minimum_required( VERSION 2.8 )
|
|
|
|
project( BoostParts )
|
|
|
|
set( Python_ADDITIONAL_VERSIONS 2.7 2.6 )
|
|
find_package( PythonLibs 2.6 REQUIRED )
|
|
|
|
if ( NOT PYTHONLIBS_VERSION_STRING VERSION_LESS "3.0.0" )
|
|
message( FATAL_ERROR
|
|
"CMake found python3 libs instead of python2 libs. YCM works only with "
|
|
"python2.\n" )
|
|
endif()
|
|
|
|
file( GLOB_RECURSE SOURCES *.cpp )
|
|
|
|
# We need to remove all the thread cpp files and then add them on a per-platform
|
|
# basis
|
|
file( GLOB_RECURSE to_remove libs/thread/*.cpp libs/detail/*.cpp )
|
|
|
|
if( to_remove )
|
|
list( REMOVE_ITEM SOURCES ${to_remove} )
|
|
endif()
|
|
|
|
set( COMMON_SOURCES
|
|
libs/thread/src/future.cpp
|
|
)
|
|
|
|
set( WIN_SOURCES
|
|
libs/thread/src/win32/thread.cpp
|
|
libs/thread/src/win32/timeconv.inl
|
|
libs/thread/src/win32/tss_dll.cpp
|
|
libs/thread/src/win32/tss_pe.cpp
|
|
)
|
|
|
|
set( UNIX_SOURCES
|
|
libs/thread/src/pthread/once.cpp
|
|
libs/thread/src/pthread/thread.cpp
|
|
libs/thread/src/pthread/timeconv.inl
|
|
)
|
|
|
|
list( APPEND SOURCES ${COMMON_SOURCES} )
|
|
|
|
if ( WIN32 )
|
|
list( APPEND SOURCES ${WIN_SOURCES} )
|
|
else()
|
|
list( APPEND SOURCES ${UNIX_SOURCES} )
|
|
endif()
|
|
|
|
#############################################################################
|
|
|
|
include_directories(
|
|
SYSTEM
|
|
${CMAKE_CURRENT_SOURCE_DIR}
|
|
${PYTHON_INCLUDE_DIRS}
|
|
)
|
|
|
|
add_library( BoostParts ${SOURCES} )
|
|
|
|
#############################################################################
|
|
|
|
if( CMAKE_COMPILER_IS_GNUCXX OR COMPILER_IS_CLANG )
|
|
# No warnings. We just use Boost as is so warnings coming from it are just
|
|
# noise.
|
|
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -w")
|
|
endif()
|
|
|
|
#############################################################################
|
|
|
|
if( NOT WIN32 )
|
|
# Linking fails without this on some platforms, notably anything x64.
|
|
set_target_properties( BoostParts PROPERTIES COMPILE_FLAGS "-fPIC")
|
|
endif()
|
|
|
|
#############################################################################
|
|
|
|
# Special compiler and linker flags for MSVC
|
|
if( MSVC )
|
|
set( CMAKE_CXX_FLAGS_RELEASE "${CMAKE_CXX_FLAGS_RELEASE} /Oi /GL" )
|
|
set_target_properties( ${PROJECT_NAME} PROPERTIES STATIC_LIBRARY_FLAGS "/LTCG" )
|
|
endif()
|
|
|
|
if( SYSTEM_IS_SUNOS )
|
|
# SunOS needs this setting for thread support
|
|
set( CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -pthreads" )
|
|
endif()
|