forked from boostorg/config
rm cmake from the release branch before it goes out broken. Policy dictates that you never commit to release, you commit to trunk and merge to release.
[SVN r56941]
This commit is contained in:
@@ -1,28 +0,0 @@
|
|||||||
#
|
|
||||||
# Copyright Troy D. Straszheim
|
|
||||||
#
|
|
||||||
# Distributed under the Boost Software License, Version 1.0.
|
|
||||||
# See http://www.boost.org/LICENSE_1_0.txt
|
|
||||||
#
|
|
||||||
#----------------------------------------------------------------------------
|
|
||||||
# This file was automatically generated from the original CMakeLists.txt file
|
|
||||||
# Add a variable to hold the headers for the library
|
|
||||||
set (lib_headers
|
|
||||||
config.hpp
|
|
||||||
config
|
|
||||||
)
|
|
||||||
|
|
||||||
# Add a library target to the build system
|
|
||||||
boost_library_project(
|
|
||||||
config
|
|
||||||
# SRCDIRS
|
|
||||||
TESTDIRS test
|
|
||||||
HEADERS ${lib_headers}
|
|
||||||
# DOCDIRS
|
|
||||||
DESCRIPTION "Helps Boost library developers adapt to compiler idiosyncrasies; not intended for library users."
|
|
||||||
MODULARIZED
|
|
||||||
AUTHORS "John Maddock <john -at- johnmaddock.co.uk>"
|
|
||||||
# MAINTAINERS
|
|
||||||
)
|
|
||||||
|
|
||||||
|
|
@@ -1,37 +0,0 @@
|
|||||||
# Copyright John Maddock and Douglas Gregor.
|
|
||||||
# Use, modification and distribution are subject to 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)
|
|
||||||
if(MSVC)
|
|
||||||
set(BOOST_CONFIG_MSVC_STATIC_OPTIONS STATIC STATIC_RUNTIME)
|
|
||||||
endif(MSVC)
|
|
||||||
if(BORLAND)
|
|
||||||
set(BOOST_CONFIG_BORLAND_STATIC_OPTIONS STATIC STATIC_RUNTIME)
|
|
||||||
endif(BORLAND)
|
|
||||||
|
|
||||||
if(CMAKE_SYSTEM_NAME MATCHES "Linux")
|
|
||||||
set(BOOST_CONFIG_STATIC_THREAD_LIBS LINK_LIBS pthread rt)
|
|
||||||
endif(CMAKE_SYSTEM_NAME MATCHES "Linux")
|
|
||||||
|
|
||||||
boost_additional_test_dependencies(config BOOST_DEPENDS test)
|
|
||||||
|
|
||||||
boost_test_run(config_test_threaded config_test.cpp
|
|
||||||
EXTRA_OPTIONS MULTI_THREADED)
|
|
||||||
|
|
||||||
boost_test_run(config_test
|
|
||||||
EXTRA_OPTIONS SINGLE_THREADED ${BOOST_CONFIG_MSVC_STATIC_OPTIONS}
|
|
||||||
${BOOST_CONFIG_STATIC_THREAD_LIBS})
|
|
||||||
boost_test_run(config_info_threaded config_info.cpp
|
|
||||||
EXTRA_OPTIONS MULTI_THREADED)
|
|
||||||
boost_test_run(config_info
|
|
||||||
EXTRA_OPTIONS SINGLE_THREADED ${BOOST_CONFIG_MSVC_STATIC_OPTIONS})
|
|
||||||
boost_test_run(math_info
|
|
||||||
EXTRA_OPTIONS ${BOOST_CONFIG_BORLAND_STATIC_OPTIONS})
|
|
||||||
|
|
||||||
|
|
||||||
boost_test_run(limits_test DEPENDS boost_test_exec_monitor)
|
|
||||||
boost_test_run(abi_test abi/abi_test.cpp abi/main.cpp)
|
|
||||||
|
|
||||||
# TODO: config_link_test
|
|
||||||
boost_test_compile_fail(test_thread_fail1 threads/test_thread_fail1.cpp)
|
|
||||||
boost_test_compile_fail(test_thread_fail2 threads/test_thread_fail2.cpp)
|
|
Reference in New Issue
Block a user