mirror of
https://github.com/boostorg/build.git
synced 2026-02-17 13:42:14 +00:00
reports. This is essentially the same commit as r55095 on the release branch. [SVN r55159]
12 lines
358 B
CMake
12 lines
358 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)
|
|
project(CompileTest)
|
|
add_library(compile-test STATIC ${SOURCE})
|
|
include_directories(${INCLUDES})
|
|
set_source_files_properties(${SOURCE}
|
|
PROPERTIES COMPILE_FLAGS "${COMPILE_FLAGS}") |