mirror of
https://github.com/boostorg/build.git
synced 2026-02-17 01:32:12 +00:00
reports. This is essentially the same commit as r55095 on the release branch. [SVN r55159]
27 lines
598 B
CMake
27 lines
598 B
CMake
#
|
|
# Copyright Troy D. Straszheim
|
|
#
|
|
# Distributed under the Boost Software License, Version 1.0.
|
|
# See http://www.boost.org/LICENSE_1_0.txt
|
|
#
|
|
cmake_minimum_required(VERSION 2.6)
|
|
|
|
file(GLOB BOOST_EXPORTS "${BOOST_EXPORTS_DIR}/*.cmake")
|
|
|
|
foreach(import
|
|
${DEPENDS})
|
|
include(${BOOST_EXPORTS_DIR}/${import}.cmake)
|
|
endforeach()
|
|
|
|
project(LinkTest)
|
|
include_directories (${INCLUDES})
|
|
add_executable(link-test ${SOURCE})
|
|
set_source_files_properties(${SOURCE}
|
|
PROPERTIES COMPILE_FLAGS "${COMPILE_FLAGS}")
|
|
|
|
message("DEPENDS=====${DEPENDS}")
|
|
|
|
target_link_libraries(link-test
|
|
${LINK_LIBS}
|
|
${DEPENDS})
|