Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

move to boost namespace, add noexcept features #84

Merged
merged 1 commit into from
Dec 11, 2016
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 0 additions & 13 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,6 @@ project(callable_traits CXX)
list(APPEND CMAKE_MODULE_PATH "${CMAKE_CURRENT_SOURCE_DIR}/cmake")
enable_testing()

# Perform checks to make sure we support the current compiler
include(CheckCxxCompilerSupport)

if(BUILD_CXX_STD)
else()
# Defaults to C++14 if not set:
Expand Down Expand Up @@ -63,16 +60,6 @@ if(NOT ${CMAKE_CXX_COMPILER_ID} STREQUAL "Clang")
callable_traits_append_flag(callable_traits_HAS_FGNU_TM -fgnu-tm)
endif()


find_package(Boost 1.59)
if (Boost_FOUND)
include_directories(${Boost_INCLUDE_DIRS})
else()
message(WARNING
"The Boost library headers were not found; targets depending "
"on Boost won't be available.")
endif()

#
#find_package(Doxygen)
##find_package(Meta)
Expand Down
52 changes: 0 additions & 52 deletions Jamroot.jam

This file was deleted.

Binary file modified boost.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
69 changes: 0 additions & 69 deletions cmake/CheckCxxCompilerSupport.cmake

This file was deleted.

32 changes: 17 additions & 15 deletions doc/Jamfile.v2
Original file line number Diff line number Diff line change
@@ -1,23 +1,25 @@
# Copyright 2010 Tim Blechmann
# Copyright 2016 Modified Work Barrett Adair
# Distributed under the Boost Software License, Version 1.0. (See accompanying
# (C) Copyright 2008-11 Anthony Williams
# (C) Copyright 2011-12 Vicente J. Botet Escriba
# (C) Copyright 2016 Barrett Adair
#
# Distributed under the Boost Software License, Version 1.0. (See accompanying
# file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)

import quickbook ;
using boostbook ;
using quickbook ;

xml callable_traits : callable_traits.qbk : ;
xml callable_traits : callable_traits.qbk ;

boostbook standalone
: callable_traits
: <xsl:param>html.stylesheet=boostbook.css
# <xsl:param>boost.root=./
# <xsl:param>boost.libraries=$BOOST_ROOT/libraries.htm
<format>pdf:<xsl:param>boost.url.prefix=http://www.boost.org/doc/libs/release/libs/callable_traits/doc/html
;
<xsl:param>boost.root=../../../..
# <xsl:param>boost.libraries=../../../../doc/libraries.htm
<format>pdf:<xsl:param>boost.url.prefix=http://www.boost.org/doc/libs/release/doc/html
;

install css : [ glob src/css/*.css ]
: <location>html ;
install images : [ glob src/images/*.png ]
: <location>html/images ;
explicit css ;
explicit images ;
###############################################################################
alias boostdoc ;

install html : ../../../doc/src/boostbook.css ;
install ../ : ../../../boost.png ;
Loading